- fixed errors in Toggle Axis

- fixed error with shortcut key triggering twice the keyPressEvent when in the Project List View
This commit is contained in:
Marius Stanciu 2019-02-08 15:55:32 +02:00 committed by Marius
parent 2524e6bd59
commit 2be35e4248
3 changed files with 5 additions and 4 deletions

View File

@ -1562,7 +1562,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
# Toggle axis
if key == QtCore.Qt.Key_G:
if self.toggle_axis is False:
if self.app.toggle_axis is False:
self.app.plotcanvas.v_line.set_data(color=(0.70, 0.3, 0.3, 1.0))
self.app.plotcanvas.h_line.set_data(color=(0.70, 0.3, 0.3, 1.0))
self.app.plotcanvas.redraw()
@ -1571,7 +1571,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
self.app.plotcanvas.v_line.set_data(color=(0.0, 0.0, 0.0, 0.0))
self.app.plotcanvas.h_line.set_data(color=(0.0, 0.0, 0.0, 0.0))
self.appplotcanvas.redraw()
self.app.plotcanvas.redraw()
self.app.toggle_axis = False
# Open Preferences Window

View File

@ -36,7 +36,7 @@ class KeySensitiveListView(QtWidgets.QTreeView):
keyPressed = QtCore.pyqtSignal(int)
def keyPressEvent(self, event):
super(KeySensitiveListView, self).keyPressEvent(event)
# super(KeySensitiveListView, self).keyPressEvent(event)
self.keyPressed.emit(event.key())
def dragEnterEvent(self, event):

View File

@ -13,7 +13,8 @@ CAD program, and create G-Code for Isolation routing.
- when shortcut keys 1, 2, 3 (tab selection) are activated, if the splitter left side (the notebook) is hidden it will be mae visible
- changed the menu entry Toggle Grid name to Toggle Grid Snap
- fixed errors in Toggle Axis
- fixed error with shortcut key triggering twice the keyPressEvent when in the Project List View
7.02.2019