controls/DebugVariablePanel/DebugVariableViewer.py
changeset 1823 1e9a67d68612
parent 1807 5562f34f2fc2
child 1831 56b48961cc68
--- a/controls/DebugVariablePanel/DebugVariableViewer.py	Thu Sep 21 15:04:15 2017 +0300
+++ b/controls/DebugVariablePanel/DebugVariableViewer.py	Thu Sep 21 16:06:51 2017 +0300
@@ -41,10 +41,8 @@
  HIGHLIGHT_RESIZE] = range(6)
 
 # Viewer highlight styles
-HIGHLIGHT_DROP_PEN = None
-HIGHLIGHT_DROP_BRUSH = None
-HIGHLIGHT_RESIZE_PEN = None
-HIGHLIGHT_RESIZE_BRUSH = None
+HIGHLIGHT = {
+}
 
 # -------------------------------------------------------------------------------
 #                        Base Debug Variable Viewer Class
@@ -85,11 +83,12 @@
         """
         Init global pens and brushes
         """
-        if HIGHLIGHT_DROP_PEN is None:
-            HIGHLIGHT_DROP_PEN = wx.Pen(wx.Colour(0, 128, 255))
-            HIGHLIGHT_DROP_BRUSH = wx.Brush(wx.Colour(0, 128, 255, 128))
-            HIGHLIGHT_RESIZE_PEN = wx.Pen(wx.Colour(200, 200, 200))
-            HIGHLIGHT_RESIZE_BRUSH = wx.Brush(wx.Colour(200, 200, 200))
+        global HIGHLIGHT
+        if not HIGHLIGHT:
+            HIGHLIGHT['DROP_PEN'] = wx.Pen(wx.Colour(0, 128, 255))
+            HIGHLIGHT['DROP_BRUSH'] = wx.Brush(wx.Colour(0, 128, 255, 128))
+            HIGHLIGHT['RESIZE_PEN'] = wx.Pen(wx.Colour(200, 200, 200))
+            HIGHLIGHT['RESIZE_BRUSH'] = wx.Brush(wx.Colour(200, 200, 200))
 
     def GetIndex(self):
         """
@@ -281,8 +280,8 @@
         width, height = self.GetSize()
 
         # Set dc styling for drop before or drop after highlight
-        dc.SetPen(HIGHLIGHT_DROP_PEN)
-        dc.SetBrush(HIGHLIGHT_DROP_BRUSH)
+        dc.SetPen(HIGHLIGHT['DROP_PEN'])
+        dc.SetBrush(HIGHLIGHT['DROP_BRUSH'])
 
         # Draw line at upper side of Viewer if highlight is drop before
         if self.Highlight == HIGHLIGHT_BEFORE: