[GRASS-SVN] r72588 - grass/branches/releasebranch_7_2/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Mar 30 18:21:50 PDT 2018


Author: annakrat
Date: 2018-03-30 18:21:50 -0700 (Fri, 30 Mar 2018)
New Revision: 72588

Modified:
   grass/branches/releasebranch_7_2/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: fix font dialog on mac, #3542 (merge from trunk, r72586)

Modified: grass/branches/releasebranch_7_2/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/branches/releasebranch_7_2/gui/wxpython/gui_core/dialogs.py	2018-03-31 01:19:25 UTC (rev 72587)
+++ grass/branches/releasebranch_7_2/gui/wxpython/gui_core/dialogs.py	2018-03-31 01:21:50 UTC (rev 72588)
@@ -2471,7 +2471,7 @@
                                   label=_("Font size:"))
             gridSizer.Add(item=label,
                           flag=wx.ALIGN_CENTER_VERTICAL,
-                          pos=(2, 0))
+                          pos=(3, 0))
 
             self.spin = SpinCtrl(parent=panel, id=wx.ID_ANY)
             if self.fontsize:
@@ -2480,7 +2480,7 @@
             self.spin.Bind(wx.EVT_TEXT, self.OnSizeSpin)
             gridSizer.Add(item=self.spin,
                           flag=wx.ALIGN_CENTER_VERTICAL,
-                          pos=(3, 0))
+                          pos=(4, 0))
 
         else:
             return



More information about the grass-commit mailing list