disabledColorButton should be disabledColorToolButton

This commit is contained in:
johanneshilden 2017-09-29 16:27:55 +03:00
parent f4905e7a77
commit 9e97a0091a
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ void IconButtonSettingsEditor::selectColor()
if ("colorToolButton" == senderName) {
m_button->setColor(color);
ui->colorLineEdit->setText(color.name(QColor::HexRgb));
} else if ("disabledColorButton" == senderName) {
} else if ("disabledColorToolButton" == senderName) {
m_button->setDisabledColor(color);
ui->disabledColorLineEdit->setText(color.name(QColor::HexRgb));
}