فهرست منبع

wxGUI/vdigit: force LC_NUMERIC to C

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47834 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 14 سال پیش
والد
کامیت
9cefe6cd5c
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      gui/wxpython/gui_modules/wxvdriver.py

+ 3 - 1
gui/wxpython/gui_modules/wxvdriver.py

@@ -18,6 +18,7 @@ This program is free software under the GNU General Public License
 """
 
 import math
+import locale
 
 import wx
 
@@ -71,7 +72,8 @@ class DisplayDriver:
         log = glog
         progress = gprogress
         
-        G_gisinit('')             # initialize GRASS libs
+        G_gisinit('wxvdigit')
+        locale.setlocale(locale.LC_NUMERIC, 'C')
         G_set_error_routine(errfunc) 
         G_set_percent_routine(perfunc)