From 880a85b504d17396ada5515bcde4e37359c3f816 Mon Sep 17 00:00:00 2001 From: Qua-non Date: Sun, 11 Nov 2012 03:14:51 +0530 Subject: [PATCH] Core: Window update `size` property on window re-size --- kivy/core/window/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/core/window/__init__.py b/kivy/core/window/__init__.py index 9ffd3ca97..a320a06d7 100755 --- a/kivy/core/window/__init__.py +++ b/kivy/core/window/__init__.py @@ -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. '''