From 7614776e10f6c9268bf2b83fca5a607bb55d2200 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Wed, 23 Jan 2013 10:57:07 +0100 Subject: [PATCH] Fixed isComplete() for credential setup dialog. --- src/mirall/owncloudwizard.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mirall/owncloudwizard.cpp b/src/mirall/owncloudwizard.cpp index c1d4b7be79..3abc7ca34a 100644 --- a/src/mirall/owncloudwizard.cpp +++ b/src/mirall/owncloudwizard.cpp @@ -97,6 +97,7 @@ OwncloudSetupPage::OwncloudSetupPage() _ui.cbSecureConnect->setEnabled(QSslSocket::supportsSsl()); connect( _ui.lePassword, SIGNAL(textChanged(QString)), this, SIGNAL(completeChanged())); + connect( _ui.leUsername, SIGNAL(textChanged(QString)), this, SIGNAL(completeChanged())); connect( _ui.cbNoPasswordStore, SIGNAL(stateChanged(int)), this, SLOT(slotPwdStoreChanged(int))); connect( _ui.cbSecureConnect, SIGNAL(stateChanged(int)), this, SLOT(slotSecureConChanged(int)));