Merge pull request #803 from kivy/win_size

Core: Window update `size` property on window re-size
This commit is contained in:
Mathieu Virbel 2012-11-19 07:47:39 -08:00
commit 2372fa9f30
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ class WindowBase(EventDispatcher):
return True
else:
return False
size = AliasProperty(_get_size, _set_size)
size = AliasProperty(_get_size, _set_size, bind=('_size', ))
'''Get the rotated size of the window. If :data:`rotation` is set, then the
size will change to reflect the rotation.
'''