浏览代码

wxGUI: fix about dialog reporting 64bit platform

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@67142 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 9 年之前
父节点
当前提交
0e7b97c3e4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/wxpython/gui_core/ghelp.py

+ 1 - 1
gui/wxpython/gui_core/ghelp.py

@@ -112,7 +112,7 @@ class AboutWindow(wx.Frame):
                       flag = wx.ALL | wx.ALIGN_CENTER, border = 20)
         
         infoLabel = 'GRASS GIS %s' % vInfo.get('version', _('unknown version'))
-        if '64' in vInfo.get('build_platform', ''):
+        if 'x86_64' in vInfo.get('build_platform', ''):
             infoLabel += ' (64bit)'
         info = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
                              label = infoLabel + os.linesep)