Skip to content

Commit

Permalink
Icon themes toolbar customization dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
triplus authored and yorikvanhavre committed Jun 22, 2020
1 parent 425d8f8 commit d117505
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Gui/DlgToolbarsImp.cpp
Expand Up @@ -73,10 +73,10 @@ DlgCustomToolbars::DlgCustomToolbars(DlgCustomToolbars::Type t, QWidget* parent)
, type(t)
{
ui->setupUi(this);
ui->moveActionRightButton->setIcon(BitmapFactory().pixmap(":/icons/button_right.svg"));
ui->moveActionLeftButton->setIcon(BitmapFactory().pixmap(":/icons/button_left.svg"));
ui->moveActionDownButton->setIcon(BitmapFactory().pixmap(":/icons/button_down.svg"));
ui->moveActionUpButton->setIcon(BitmapFactory().pixmap(":/icons/button_up.svg"));
ui->moveActionRightButton->setIcon(BitmapFactory().iconFromTheme("button_right"));
ui->moveActionLeftButton->setIcon(BitmapFactory().iconFromTheme("button_left"));
ui->moveActionDownButton->setIcon(BitmapFactory().iconFromTheme("button_down"));
ui->moveActionUpButton->setIcon(BitmapFactory().iconFromTheme("button_up"));

CommandManager & cCmdMgr = Application::Instance->commandManager();
std::map<std::string,Command*> sCommands = cCmdMgr.getCommands();
Expand Down

0 comments on commit d117505

Please sign in to comment.