[GRASS-SVN] r44033 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Oct 24 12:35:00 EDT 2010


Author: martinl
Date: 2010-10-24 09:35:00 -0700 (Sun, 24 Oct 2010)
New Revision: 44033

Modified:
   grass/trunk/gui/wxpython/gui_modules/prompt.py
Log:
wxGUI/prompt: do not ignore '+'
(merge r44030 from trunk)


Modified: grass/trunk/gui/wxpython/gui_modules/prompt.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/prompt.py	2010-10-24 16:34:24 UTC (rev 44032)
+++ grass/trunk/gui/wxpython/gui_modules/prompt.py	2010-10-24 16:35:00 UTC (rev 44033)
@@ -787,7 +787,7 @@
             self.CallTipShow(pos, usage + '\n\n' + description)
             
         elif (event.GetKeyCode() == wx.WXK_SPACE and event.ControlDown()) or \
-                event.GetKeyCode() == 61 or event.GetKeyCode() == 44:
+                (not event.ShiftDown() and (event.GetKeyCode() == 61 or event.GetKeyCode() == 44)):
             # Autocompletion for map/data file name entry after '=', ',', or manually
             pos = self.GetCurrentPos()
             entry = self.GetTextLeft()



More information about the grass-commit mailing list