From f935dcb0f2fed1fe69acd35f46e6cffa3758cfac Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Mon, 30 Apr 2012 20:02:05 +0000 Subject: Don't cut the image when rotate SL #3457 When the user rotates the image the Y coordinate have to be 0 so it image is visible from the top of it. Signed-off-by: Manuel Kaufmann Acked-by: Manuel Quinones --- (limited to 'OficinaActivity.py') diff --git a/OficinaActivity.py b/OficinaActivity.py index a74b7c1..1745d0a 100644 --- a/OficinaActivity.py +++ b/OficinaActivity.py @@ -207,7 +207,7 @@ class OficinaActivity(activity.Activity): def center_area(self): x, y = self._get_area_displacement() - self.fixed.move(self.area, x, y) + self.fixed.move(self.area, x, 0) def move_textview(self, dx, dy): x, y = self._get_area_displacement() -- cgit v0.9.1