]> git.saurik.com Git - wxWidgets.git/commitdiff
avoid assert in wxMac port, only change the font point size when we
authorRobin Dunn <robin@alldunn.com>
Tue, 28 Mar 2006 19:20:48 +0000 (19:20 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 28 Mar 2006 19:20:48 +0000 (19:20 +0000)
are going to be using it in objects that need to draw text

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38426 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/analogclock/helpers.py

index 891b40ecd33b07571a40d5136fa3bc02634d06c2..30c66066fbda7f82f63357cbfbb99d800ec86ea7 100644 (file)
@@ -649,11 +649,11 @@ class TickSet:
         a_tick = self.ticks[0]
 
         size = a_tick.GetMaxSize(scale)
-        self.font.SetPointSize(size)
         maxsize = size
 
         # Try to find a 'good' max size for text-based ticks.
         if a_tick.text is not None:
+            self.font.SetPointSize(size)
             dc = wx.MemoryDC()
             dc.SelectObject(wx.EmptyBitmap(*clocksize.Get()))
             dc.SetFont(self.font)