0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-05 14:06:27 -05:00

Bugfix: GUI: Only apply invalid style to QValidatedLineEdit, not its tooltip

This commit is contained in:
Luke Dashjr 2020-02-12 23:50:35 +00:00
parent 9828f9a996
commit 2385b508d5

View file

@ -28,7 +28,7 @@ void QValidatedLineEdit::setValid(bool _valid)
}
else
{
setStyleSheet(STYLE_INVALID);
setStyleSheet("QValidatedLineEdit { " STYLE_INVALID "}");
}
this->valid = _valid;
}