forked from qt-creator/qt-creator
Terminal: Use terminal icon for the shells dropdown button
The + icon is confusing with the zoom in. Change-Id: Ibafa538a7ef3c1f58c940780caca4c24bfc23ef3 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
@@ -47,7 +47,9 @@ TerminalPane::TerminalPane(QObject *parent)
|
||||
QAction &newTerminal = TerminalCommands::instance().paneActions().newTerminal;
|
||||
QAction &closeTerminal = TerminalCommands::instance().paneActions().closeTerminal;
|
||||
|
||||
newTerminal.setIcon(Icons::PLUS_TOOLBAR.icon());
|
||||
newTerminal.setIcon(
|
||||
Icon({{":/terminal/images/settingscategory_terminal.png", Theme::Theme::IconsBaseColor}})
|
||||
.icon());
|
||||
newTerminal.setToolTip(Tr::tr("Create a new Terminal."));
|
||||
|
||||
connect(&newTerminal, &QAction::triggered, this, [this] { openTerminal({}); });
|
||||
|
||||
Reference in New Issue
Block a user