@@ -304,8 +304,6 @@ QGroupBox* SettingsWidget::createEditorPrefsTab() {
304
304
show_tabs->setToolTip (tr (" Toggle visibility of the buffer selection tabs." ));
305
305
full_screen = new QCheckBox (tr (" Full screen" ));
306
306
full_screen->setToolTip (tooltipStrShiftMeta (' F' , tr (" Toggle full screen mode." )));
307
- goto_buffer_shortcuts = new QCheckBox (tr (" Enable buffer shortcuts" ));
308
- goto_buffer_shortcuts->setToolTip (tr (" Use C-M-0 .. C-M-9 to go to buffer directly" ));
309
307
310
308
colourModeButtonGroup = new QButtonGroup (this );
311
309
lightModeCheck = new QCheckBox (tr (" Light" ));
@@ -342,7 +340,7 @@ QGroupBox* SettingsWidget::createEditorPrefsTab() {
342
340
343
341
automation_box_layout->addWidget (auto_indent_on_run);
344
342
automation_box_layout->addWidget (full_screen);
345
- automation_box_layout-> addWidget (goto_buffer_shortcuts);
343
+
346
344
automation_box->setLayout (automation_box_layout);
347
345
348
346
QGroupBox *debug_box = new QGroupBox (tr (" Logging" ));
@@ -657,7 +655,6 @@ void SettingsWidget::updateSettings() {
657
655
piSettings->show_buttons = show_buttons->isChecked ();
658
656
piSettings->show_tabs = show_tabs->isChecked ();
659
657
piSettings->full_screen = full_screen->isChecked ();
660
- piSettings->goto_buffer_shortcuts = goto_buffer_shortcuts->isChecked ();
661
658
piSettings->log_synths = log_synths->isChecked ();
662
659
piSettings->clear_output_on_run = clear_output_on_run->isChecked ();
663
660
piSettings->log_cues = log_cues->isChecked ();
@@ -697,7 +694,6 @@ void SettingsWidget::settingsChanged() {
697
694
show_buttons->setChecked (piSettings->show_buttons );
698
695
show_tabs->setChecked (piSettings->show_tabs );
699
696
full_screen->setChecked (piSettings->full_screen );
700
- goto_buffer_shortcuts->setChecked (piSettings->goto_buffer_shortcuts );
701
697
log_synths->setChecked (piSettings->log_synths );
702
698
clear_output_on_run->setChecked (piSettings->clear_output_on_run );
703
699
log_cues->setChecked (piSettings->log_cues );
@@ -743,7 +739,6 @@ void SettingsWidget::connectAll() {
743
739
connect (show_buttons, SIGNAL (clicked ()), this , SLOT (updateSettings ()));
744
740
connect (show_tabs, SIGNAL (clicked ()), this , SLOT (updateSettings ()));
745
741
connect (full_screen, SIGNAL (clicked ()), this , SLOT (updateSettings ()));
746
- connect (goto_buffer_shortcuts, SIGNAL (clicked ()), this , SLOT (updateSettings ()));
747
742
connect (log_synths, SIGNAL (clicked ()), this , SLOT (updateSettings ()));
748
743
connect (clear_output_on_run, SIGNAL (clicked ()), this , SLOT (updateSettings ()));
749
744
connect (log_cues, SIGNAL (clicked ()), this , SLOT (updateSettings ()));
0 commit comments