From b1a544be109d336c0b53722e3f8b51687972c94e Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Wed, 12 Feb 2020 23:53:41 +0000 Subject: [PATCH] Bugfix: GUI: Re-check validity after QValidatedLineEdit::setCheckValidator --- src/qt/qvalidatedlineedit.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/qvalidatedlineedit.cpp b/src/qt/qvalidatedlineedit.cpp index 34489f3aac92b..42fe172fa928b 100644 --- a/src/qt/qvalidatedlineedit.cpp +++ b/src/qt/qvalidatedlineedit.cpp @@ -106,6 +106,7 @@ void QValidatedLineEdit::checkValidity() void QValidatedLineEdit::setCheckValidator(const QValidator *v) { checkValidator = v; + checkValidity(); } bool QValidatedLineEdit::isValid()