fix icons colour in dark mode
Fix add/remove arrows in the toolbar editing dialog Fix copy button in the about dialog
This commit is contained in:
parent
82fd5a2b76
commit
1d5111df93
2 changed files with 3 additions and 0 deletions
|
@ -4730,6 +4730,7 @@ AboutBoxDialog::AboutBoxDialog()
|
|||
finalString.replace("\n", "<br/>");
|
||||
copyrightLabel->setText(QString("<span style=\"font-size:10pt;\">%1</span>").arg(finalString));
|
||||
connect(copyRevisionButton, SIGNAL(clicked()), this, SLOT(copyRevisionToClipboard()));
|
||||
copyRevisionButton->setIcon(*icons[int(Icons::copy_ICON)]);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------
|
||||
|
|
|
@ -64,6 +64,8 @@ ToolbarEditor::ToolbarEditor(QWidget* parent)
|
|||
|
||||
up->setIcon(*icons[int(Icons::arrowUp_ICON)]);
|
||||
down->setIcon(*icons[int(Icons::arrowDown_ICON)]);
|
||||
add->setIcon(*icons[int(Icons::goPrevious_ICON)]);
|
||||
remove->setIcon(*icons[int(Icons::goNext_ICON)]);
|
||||
|
||||
MuseScore::restoreGeometry(this);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue