Changed: Disable widgets if no profile selected

This commit is contained in:
kervala 2016-03-12 21:59:29 +01:00
parent a5a9a0cbc7
commit 65fd3593f4

View file

@ -79,6 +79,15 @@ void CProfilesDialog::onProfileClicked(const QModelIndex &index)
void CProfilesDialog::displayProfile(int index) void CProfilesDialog::displayProfile(int index)
{ {
bool enabled = index > -1;
profileIdLabel->setEnabled(enabled);
accountEdit->setEnabled(enabled);
nameEdit->setEnabled(enabled);
serverComboBox->setEnabled(enabled);
argumentsEdit->setEnabled(enabled);
commentsEdit->setEnabled(enabled);
if (index < 0) return; if (index < 0) return;
saveProfile(m_currentProfileIndex); saveProfile(m_currentProfileIndex);