x86_64 fix: don't use sys.maxint (which is really maxlong) for int gproperties
This commit is contained in:
@@ -36,7 +36,7 @@ class IconButton(CanvasIcon, hippo.CanvasItem):
|
||||
|
||||
__gproperties__ = {
|
||||
'size' : (int, None, None,
|
||||
0, sys.maxint, STANDARD_SIZE,
|
||||
0, 32767, STANDARD_SIZE,
|
||||
gobject.PARAM_READWRITE)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user