controls/VariablePanel.py
changeset 1760 ed2e2afb9573
parent 1758 845ca626db09
child 1762 fcc406143e5b
--- a/controls/VariablePanel.py	Thu Aug 17 10:04:24 2017 +0300
+++ b/controls/VariablePanel.py	Thu Aug 17 10:08:23 2017 +0300
@@ -75,7 +75,7 @@
     return {_("All"): _("All"), _("Interface"): _("Interface"),
             _("   Input"): _("Input"), _("   Output"): _("Output"), _("   InOut"): _("InOut"),
             _("   External"): _("External"), _("Variables"): _("Variables"), _("   Local"): _("Local"),
-            _("   Temp"): _("Temp"), _("Global"): _("Global")}  #, _("Access") : _("Access")}
+            _("   Temp"): _("Temp"), _("Global"): _("Global")}  # , _("Access") : _("Access")}
 
 
 VARIABLE_CHOICES_DICT = dict([(_(_class), _class) for _class in GetFilterChoiceTransfer().iterkeys()])
@@ -505,11 +505,11 @@
             self.Table = VariableTable(self, [], GetVariableTableColnames(True))
 
             if element_type in ["config", "resource"]:
-                self.FilterChoices = ["All", "Global"]  #,"Access"]
+                self.FilterChoices = ["All", "Global"]  # ,"Access"]
             else:
                 self.FilterChoices = ["All",
                                         "Interface", "   Input", "   Output", "   InOut", "   External",
-                                        "Variables", "   Local", "   Temp"]  #,"Access"]
+                                        "Variables", "   Local", "   Temp"]  # ,"Access"]
 
             # these condense the ColAlignements list
             left = wx.ALIGN_LEFT