diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-04 21:15:54 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-04 21:15:54 -0400 |
| commit | c31303c6af77a47e61efd94022302f860ed5ebfc (patch) | |
| tree | 9c344addd96cb0b9d78584d7ff9028e3d24ebcd9 /src/settingsdialog.cpp | |
| parent | 2db29cffda538c6a9be24dff705e1d032bd42008 (diff) | |
fixed title on the manual key dialog
disabled disconnect and manual key buttons while fetching the api key
Diffstat (limited to 'src/settingsdialog.cpp')
| -rw-r--r-- | src/settingsdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/settingsdialog.cpp b/src/settingsdialog.cpp index 0373cef6..b3e8c8a7 100644 --- a/src/settingsdialog.cpp +++ b/src/settingsdialog.cpp @@ -532,6 +532,8 @@ void SettingsDialog::updateNexusButtons() // api key is in the process of being retrieved ui->nexusConnect->setText("Connecting the API. Please login within the browser and accept the request. This will time out after 30 minutes."); ui->nexusConnect->setEnabled(false); + ui->nexusDisconnect->setEnabled(false); + ui->nexusManualKey->setEnabled(false); } else if (m_settings->hasNexusApiKey()) { // api key is present |
