dialogs/BlockPreviewDialog.py
changeset 1241 368f8516706c
parent 1237 0c8b8ef9559b
child 1242 ec2c415fc65e
--- a/dialogs/BlockPreviewDialog.py	Mon Jun 10 11:54:18 2013 +0200
+++ b/dialogs/BlockPreviewDialog.py	Mon Jun 10 21:42:30 2013 +0200
@@ -112,9 +112,18 @@
             width = max(self.MinBlockSize[0], min_width)
             height = max(self.MinBlockSize[1], min_height)
             self.Block.SetSize(width, height)
-            clientsize = self.Preview.GetClientSize()
-            x = (clientsize.width - width) / 2
-            y = (clientsize.height - height) / 2
+            client_size = self.Preview.GetClientSize()
+            if (width * 1.2 > client_size.width or 
+                height * 1.2 > client_size.height):
+                scale = max(float(width) / client_size.width,
+                            float(height) / client_size.height) * 1.2
+                x = int(client_size.width * scale - width) / 2
+                y = int(client_size.height * scale - height) / 2
+            else:
+                x = (client_size.width - width) / 2
+                y = (client_size.height - height) / 2
+                scale = 1.0
+            dc.SetUserScale(1.0 / scale, 1.0 / scale)
             self.Block.SetPosition(x, y)
             self.Block.Draw(dc)