diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-05-24 21:47:56 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-05-24 21:47:56 -0500 |
commit | 38d48201d7ca12f3662bd245c25d4b04d8b317f9 (patch) | |
tree | 2da8533b3fd05b9af8fca7f88da8fa86af241f45 /ui/qt5 | |
parent | 5f79593f3d3c4b0dd56b7438de032746f0b07bb2 (diff) | |
download | horizon-38d48201d7ca12f3662bd245c25d4b04d8b317f9.tar.gz horizon-38d48201d7ca12f3662bd245c25d4b04d8b317f9.tar.bz2 horizon-38d48201d7ca12f3662bd245c25d4b04d8b317f9.tar.xz horizon-38d48201d7ca12f3662bd245c25d4b04d8b317f9.zip |
Qt UI: Root passphrase should be >= 8 chars, not > 8
Diffstat (limited to 'ui/qt5')
-rw-r--r-- | ui/qt5/rootpwpage.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt5/rootpwpage.cc b/ui/qt5/rootpwpage.cc index 833878c..f4dd540 100644 --- a/ui/qt5/rootpwpage.cc +++ b/ui/qt5/rootpwpage.cc @@ -91,6 +91,6 @@ RootPassphrasePage::RootPassphrasePage(QWidget *parent) } bool RootPassphrasePage::isComplete() const { - return (rootPW->text().size() > 8 && + return (rootPW->text().size() >= 8 && rootPW->text() == confirmPW->text()); } |