controls/DebugVariablePanel/DebugVariableGraphicViewer.py
changeset 1768 691083b5682a
parent 1767 c74815729afd
child 1777 c46ec818bdd7
--- a/controls/DebugVariablePanel/DebugVariableGraphicViewer.py	Fri Aug 18 12:36:31 2017 +0300
+++ b/controls/DebugVariablePanel/DebugVariableGraphicViewer.py	Fri Aug 18 20:14:38 2017 +0300
@@ -447,8 +447,8 @@
             w, h = button.GetSize()
             if direction in [wx.LEFT, wx.RIGHT]:
                 x = rect.x + (- w - offset
-                            if direction == wx.LEFT
-                            else rect.width + offset)
+                              if direction == wx.LEFT
+                              else rect.width + offset)
                 y = rect.y + (rect.height - h) / 2
                 offset += w
             else:
@@ -644,8 +644,8 @@
                 # Start a drag'n drop from mouse position in wx coordinate of
                 # parent
                 xw, yw = self.GetPosition()
-                self.ParentWindow.StartDragNDrop(self,
-                    self.ItemsDict.values()[item_idx],
+                self.ParentWindow.StartDragNDrop(
+                    self, self.ItemsDict.values()[item_idx],
                     x + xw, y + yw,  # Current mouse position
                     x + xw, y + yw)  # Mouse position when button was clicked
 
@@ -686,7 +686,7 @@
             item = self.ParentWindow.DraggingAxesPanel.ItemsDict.values()[0]
             # Give mouse position in wx coordinate of parent
             self.ParentWindow.StopDragNDrop(item.GetVariable(),
-                xw + event.x, yw + height - event.y)
+                                            xw + event.x, yw + height - event.y)
 
         else:
             # Reset any move in progress
@@ -725,9 +725,9 @@
             if self.GraphType == GRAPH_PARALLEL:  # Graph is parallel
                 directions = [wx.RIGHT] * len(self.AxesLabels) + \
                              [wx.LEFT] * len(self.Labels)
-            elif len(self.AxesLabels) > 0:        # Graph is orthogonal in 2D
-                directions = [wx.RIGHT, wx.TOP,   # Directions for AxesLabels
-                             wx.LEFT, wx.BOTTOM]  # Directions for Labels
+            elif len(self.AxesLabels) > 0:         # Graph is orthogonal in 2D
+                directions = [wx.RIGHT, wx.TOP,    # Directions for AxesLabels
+                              wx.LEFT, wx.BOTTOM]  # Directions for Labels
             else:  # Graph is orthogonal in 3D
                 directions = [wx.LEFT] * len(self.Labels)
 
@@ -787,8 +787,8 @@
                 elif self.MouseStartPos is not None and len(self.Items) == 1:
                     xw, yw = self.GetPosition()
                     self.ParentWindow.SetCursorTick(self.StartCursorTick)
-                    self.ParentWindow.StartDragNDrop(self,
-                        self.ItemsDict.values()[0],
+                    self.ParentWindow.StartDragNDrop(
+                        self, self.ItemsDict.values()[0],
                         # Current mouse position
                         event.x + xw, height - event.y + yw,
                         # Mouse position when button was clicked
@@ -888,8 +888,8 @@
         # The minimum height take in account the height of all items, padding
         # inside figure and border around figure
         return wx.Size(200,
-            CANVAS_BORDER[0] + CANVAS_BORDER[1] +
-            2 * CANVAS_PADDING + VALUE_LABEL_HEIGHT * len(self.Items))
+                       CANVAS_BORDER[0] + CANVAS_BORDER[1] +
+                       2 * CANVAS_PADDING + VALUE_LABEL_HEIGHT * len(self.Items))
 
     def SetCanvasHeight(self, height):
         """