- 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
This commit is contained in:
Marius Stanciu
2019-02-08 14:55:50 +02:00
committed by Marius
parent 0bc018bbe0
commit f39fea072c
3 changed files with 11 additions and 2 deletions

View File

@@ -4199,6 +4199,10 @@ class App(QtCore.QObject):
elif name == 'tool':
self.ui.notebook.setCurrentWidget(self.ui.tool_tab)
# if the splitter us hidden, display it
if self.ui.splitter.sizes()[0] == 0:
self.ui.splitter.setSizes([1, 1])
def on_copy_name(self):
self.report_usage("on_copy_name()")