- added a new function and the shortcut 'leftquote' (left of Key 1) for toggle of the notebook section

- changed the Shortcut list shortcut key to F3
This commit is contained in:
Marius Stanciu
2019-02-07 20:39:37 +02:00
committed by Marius S
parent 07ae0c9c8b
commit c888303146
5 changed files with 26 additions and 11 deletions

View File

@@ -2896,6 +2896,12 @@ class App(QtCore.QObject):
else:
self.ui.plot_tab_area.closeTab(0)
def on_toggle_notebook(self):
if self.ui.splitter.sizes()[0] == 0:
self.ui.splitter.setSizes([1, 1])
else:
self.ui.splitter.setSizes([0, 1])
def on_toggle_axis(self):
self.report_usage("on_toggle_axis()")