[GRASS-SVN] r73492 - grass/trunk/gui/wxpython/rlisetup

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Oct 6 17:18:51 PDT 2018


Author: annakrat
Date: 2018-10-06 17:18:51 -0700 (Sat, 06 Oct 2018)
New Revision: 73492

Modified:
   grass/trunk/gui/wxpython/rlisetup/wizard.py
Log:
wxGUI: fix #3675

Modified: grass/trunk/gui/wxpython/rlisetup/wizard.py
===================================================================
--- grass/trunk/gui/wxpython/rlisetup/wizard.py	2018-10-06 21:56:58 UTC (rev 73491)
+++ grass/trunk/gui/wxpython/rlisetup/wizard.py	2018-10-07 00:18:51 UTC (rev 73492)
@@ -937,9 +937,9 @@
             parent=self.areaPanel, id=wx.ID_ANY,
             label=_('Do you want to check vector areas?'))
         self.areaOK = Button(self.areaPanel, wx.ID_ANY, 'Yes', (50, 80))
-        self.areaOK.SetToolTip(wx.ToolTip(_("Select if use area by area")))
+        self.areaOK.SetToolTip(_("Select if use area by area"))
         self.areaNO = Button(self.areaPanel, wx.ID_ANY, 'No', (50, 80))
-        self.areaNO.SetToolTip(wx.ToolTip(_("All the features will be used")))
+        self.areaNO.SetToolTip(_("All the features will be used"))
         self.areaOK.Bind(wx.EVT_BUTTON, self.OnVectYes)
         self.areaNO.Bind(wx.EVT_BUTTON, self.OnVectNo)
         self.overwriteCheck.Bind(wx.EVT_CHECKBOX, self.OnOverwrite)



More information about the grass-commit mailing list