ソースを参照

wxGUI/extensions: ignore flag 'f'

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@49586 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 年 前
コミット
d2d69c09db
1 ファイル変更1 行追加1 行削除
  1. 1 1
      gui/wxpython/modules/extensions.py

+ 1 - 1
gui/wxpython/modules/extensions.py

@@ -69,7 +69,7 @@ class InstallExtensionWindow(wx.Frame):
                 desc = f.get('description', '')
             if not name and not desc:
                 continue
-            if name in ('l', 'c', 'g', 'quiet', 'verbose'):
+            if name in ('l', 'c', 'g', 'f', 'quiet', 'verbose'):
                 continue
             self.options[name] = wx.CheckBox(parent = self.panel, id = wx.ID_ANY,
                                              label = desc)