Skip to content

Commit

Permalink
Change pixmap from razor to knife (from LMMS#5524)
Browse files Browse the repository at this point in the history
  • Loading branch information
CYBERDEViL committed Feb 24, 2021
1 parent ecdc5ed commit ac47d37
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file added data/themes/classic/edit_knife.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/themes/default/edit_knife.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed data/themes/default/razor.png
Binary file not shown.
4 changes: 2 additions & 2 deletions src/gui/editors/PianoRoll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ PianoRoll::PianoRoll() :
}
if (s_toolKnife == nullptr)
{
s_toolKnife = new QPixmap(embed::getIconPixmap("razor"));
s_toolKnife = new QPixmap(embed::getIconPixmap("edit_knife"));
}

// init text-float
Expand Down Expand Up @@ -4600,7 +4600,7 @@ PianoRollWindow::PianoRollWindow() :
glueAction->setShortcut( Qt::SHIFT | Qt::Key_G );

// Knife
QAction * knifeAction = new QAction(embed::getIconPixmap("razor"),
QAction * knifeAction = new QAction(embed::getIconPixmap("edit_knife"),
tr("Knife"), noteToolsButton);
connect(knifeAction, &QAction::triggered, m_editor, &PianoRoll::setKnifeAction);
knifeAction->setShortcut( Qt::SHIFT | Qt::Key_R );
Expand Down

0 comments on commit ac47d37

Please sign in to comment.