Changed: Disable widgets if no profile selected
This commit is contained in:
parent
a5a9a0cbc7
commit
65fd3593f4
1 changed files with 9 additions and 0 deletions
|
@ -79,6 +79,15 @@ void CProfilesDialog::onProfileClicked(const QModelIndex &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;
|
||||
|
||||
saveProfile(m_currentProfileIndex);
|
||||
|
|
Loading…
Reference in a new issue