diff -r 1d7bf584eb7f -r 1e9a67d68612 controls/DebugVariablePanel/DebugVariableGraphicViewer.py --- a/controls/DebugVariablePanel/DebugVariableGraphicViewer.py Thu Sep 21 15:04:15 2017 +0300 +++ b/controls/DebugVariablePanel/DebugVariableGraphicViewer.py Thu Sep 21 16:06:51 2017 +0300 @@ -1398,15 +1398,15 @@ # If highlight to display is resize, draw thick grey line at bottom # side of canvas if self.Highlight == HIGHLIGHT_RESIZE: - destGC.SetPen(HIGHLIGHT_RESIZE_PEN) - destGC.SetBrush(HIGHLIGHT_RESIZE_BRUSH) + destGC.SetPen(HIGHLIGHT['RESIZE_PEN']) + destGC.SetBrush(HIGHLIGHT['RESIZE_BRUSH']) destGC.DrawRectangle(0, height - 5, width, 5) # If highlight to display is merging graph, draw 50% transparent blue # rectangle on left or right part of figure depending on highlight type elif self.Highlight in [HIGHLIGHT_LEFT, HIGHLIGHT_RIGHT]: - destGC.SetPen(HIGHLIGHT_DROP_PEN) - destGC.SetBrush(HIGHLIGHT_DROP_BRUSH) + destGC.SetPen(HIGHLIGHT['DROP_PEN']) + destGC.SetBrush(HIGHLIGHT['DROP_BRUSH']) x_offset = (bbox.width / 2 if self.Highlight == HIGHLIGHT_RIGHT