- fix for toggle grid lines updating canvas only after moving the mouse (hack, actually)
This commit is contained in:
@@ -5920,15 +5920,6 @@ class App(QtCore.QObject):
|
||||
pass
|
||||
pass
|
||||
self.toggle_grid_lines = True
|
||||
|
||||
# HACK: enabling/disabling the cursor seams to somehow update the shapes on screen
|
||||
# - perhaps is a bug in VisPy implementation
|
||||
if self.grid_status() is True:
|
||||
self.app_cursor.enabled = False
|
||||
self.app_cursor.enabled = True
|
||||
else:
|
||||
self.app_cursor.enabled = True
|
||||
self.app_cursor.enabled = False
|
||||
else:
|
||||
if self.is_legacy is False:
|
||||
if theme == 'white':
|
||||
@@ -5943,6 +5934,16 @@ class App(QtCore.QObject):
|
||||
pass
|
||||
self.toggle_grid_lines = False
|
||||
|
||||
if self.is_legacy is False:
|
||||
# HACK: enabling/disabling the cursor seams to somehow update the shapes on screen
|
||||
# - perhaps is a bug in VisPy implementation
|
||||
if self.grid_status() is True:
|
||||
self.app_cursor.enabled = False
|
||||
self.app_cursor.enabled = True
|
||||
else:
|
||||
self.app_cursor.enabled = True
|
||||
self.app_cursor.enabled = False
|
||||
|
||||
def show_preferences_gui(self):
|
||||
"""
|
||||
Called to initialize and show the Preferences GUI
|
||||
|
||||
Reference in New Issue
Block a user