Skip to content

Commit

Permalink
GUI - remove dummy icons from focus qactions
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Oct 20, 2024
1 parent d233e51 commit e75b59d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions app/gui/qt/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3839,43 +3839,43 @@ void MainWindow::createToolBar()
//Accessibility shortcuts

//Focus Editor
focusEditorAct = new QAction(theme->getHelpIcon(false), tr("Focus Editor"), this);
focusEditorAct = new QAction(tr("Focus Editor"), this);
connect(focusEditorAct, SIGNAL(triggered()), this, SLOT(focusEditor()));

//Focus Logs
focusLogsAct = new QAction(theme->getHelpIcon(false), tr("Focus Logs"), this);
focusLogsAct = new QAction(tr("Focus Logs"), this);
connect(focusLogsAct, SIGNAL(triggered()), this, SLOT(focusLogs()));

//Focus Context
focusContextAct = new QAction(theme->getHelpIcon(false), tr("Focus Context"), this);
focusContextAct = new QAction(tr("Focus Context"), this);
connect(focusContextAct, SIGNAL(triggered()), this, SLOT(focusContext()));

//Focus Cues
focusCuesAct = new QAction(theme->getHelpIcon(false), tr("Focus Cues"), this);
focusCuesAct = new QAction(tr("Focus Cues"), this);
connect(focusCuesAct, SIGNAL(triggered()), this, SLOT(focusCues()));

//Focus Preferences
focusPreferencesAct = new QAction(theme->getHelpIcon(false), tr("Focus Preferences"), this);
focusPreferencesAct = new QAction(tr("Focus Preferences"), this);
connect(focusPreferencesAct, SIGNAL(triggered()), this, SLOT(focusPreferences()));

//Focus HelpListing
focusHelpListingAct = new QAction(theme->getHelpIcon(false), tr("Focus Help Listing"), this);
focusHelpListingAct = new QAction(tr("Focus Help Listing"), this);
connect(focusHelpListingAct, SIGNAL(triggered()), this, SLOT(focusHelpListing()));

//Focus HelpDetails
focusHelpDetailsAct = new QAction(theme->getHelpIcon(false), tr("Focus Help Details"), this);
focusHelpDetailsAct = new QAction(tr("Focus Help Details"), this);
connect(focusHelpDetailsAct, SIGNAL(triggered()), this, SLOT(focusHelpDetails()));

//Focus Errors
focusErrorsAct = new QAction(theme->getHelpIcon(false), tr("Focus Errors"), this);
focusErrorsAct = new QAction(tr("Focus Errors"), this);
connect(focusErrorsAct, SIGNAL(triggered()), this, SLOT(focusErrors()));

//Focus BPM SCrubber
focusBPMScrubberAct = new QAction(theme->getHelpIcon(false), tr("Focus BPM Scrubber"), this);
focusBPMScrubberAct = new QAction(tr("Focus BPM Scrubber"), this);
connect(focusBPMScrubberAct, SIGNAL(triggered()), this, SLOT(focusBPMScrubber()));

//Focus Time Warp Scrubber
focusTimeWarpScrubberAct = new QAction(theme->getHelpIcon(false), tr("Focus TimeWarp Scrubber"), this);
focusTimeWarpScrubberAct = new QAction(tr("Focus TimeWarp Scrubber"), this);
connect(focusTimeWarpScrubberAct, SIGNAL(triggered()), this, SLOT(focusTimeWarpScrubber()));

showLogAct = new QAction(tr("Show Log"), this);
Expand Down

0 comments on commit e75b59d

Please sign in to comment.