]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/tools/XRCed/tree.py
Fixed SetItemBold and editing 'growable' properties of
[wxWidgets.git] / wxPython / wx / tools / XRCed / tree.py
index 8e515841aeec6fadf93140e34ca0a05187f5ae23..c08b451fd44be44d733b853788bd92003886c8c1 100644 (file)
@@ -1149,10 +1149,11 @@ class XML_Tree(wx.TreeCtrl):
         self.PopupMenu(menu, evt.GetPosition())
         menu.Destroy()
 
-    # Redefine to force the update of font dimentions
-    def SetItemBold(self, item):
-        wx.TreeCtrl.SetItemBold(self, item)
-        self.SetIndent(self.GetIndent())
+    # Redefine to force the update of font dimentions on wxGTK
+    if wx.Platform == '__WXGTK__':
+        def SetItemBold(self, item, state=True):
+            wx.TreeCtrl.SetItemBold(self, item, state)
+            self.SetIndent(self.GetIndent())
 
     # Apply changes
     def Apply(self, xxx, item):