Skip to content

Commit e75b59d

Browse files
committed
GUI - remove dummy icons from focus qactions
1 parent d233e51 commit e75b59d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

app/gui/qt/mainwindow.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3839,43 +3839,43 @@ void MainWindow::createToolBar()
38393839
//Accessibility shortcuts
38403840

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

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

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)