mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Add tests & minor edits
This commit is contained in:
parent
ca30d1832d
commit
397d804cdd
3 changed files with 28 additions and 5 deletions
|
@ -1137,7 +1137,7 @@ QMenu* EditEntryWidget::createPresetsMenu()
|
|||
return expirePresetsMenu;
|
||||
}
|
||||
|
||||
void EditEntryWidget::setupColorButton(bool foreground, QColor color)
|
||||
void EditEntryWidget::setupColorButton(bool foreground, const QColor& color)
|
||||
{
|
||||
QWidget* button = m_advancedUi->fgColorButton;
|
||||
QCheckBox* checkBox = m_advancedUi->fgColorCheckBox;
|
||||
|
@ -1165,7 +1165,7 @@ void EditEntryWidget::pickColor()
|
|||
oldColor = QColor(m_advancedUi->bgColorButton->property("color").toString());
|
||||
}
|
||||
|
||||
QColorDialog colorDialog;
|
||||
QColorDialog colorDialog(this);
|
||||
QColor newColor = colorDialog.getColor(oldColor);
|
||||
if (newColor.isValid()) {
|
||||
setupColorButton(isForeground, newColor);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue