mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-17 13:01:41 +00:00
Changed: Update index in servers list
This commit is contained in:
parent
63dddb4df8
commit
a72e76be2f
1 changed files with 3 additions and 4 deletions
|
@ -97,7 +97,7 @@ void CProfilesDialog::displayProfile(int index)
|
||||||
profileIdLabel->setText(QString::number(profile.id));
|
profileIdLabel->setText(QString::number(profile.id));
|
||||||
accountEdit->setText(profile.account);
|
accountEdit->setText(profile.account);
|
||||||
nameEdit->setText(profile.name);
|
nameEdit->setText(profile.name);
|
||||||
serverComboBox->setCurrentIndex(0);
|
serverComboBox->setCurrentIndex(m_serversModel->getIndexFromServerID(profile.server));
|
||||||
executablePathLabel->setText(QFileInfo(profile.executable).fileName());
|
executablePathLabel->setText(QFileInfo(profile.executable).fileName());
|
||||||
argumentsEdit->setText(profile.arguments);
|
argumentsEdit->setText(profile.arguments);
|
||||||
commentsEdit->setPlainText(profile.comments);
|
commentsEdit->setPlainText(profile.comments);
|
||||||
|
@ -115,11 +115,10 @@ void CProfilesDialog::saveProfile(int index)
|
||||||
if (index < 0) return;
|
if (index < 0) return;
|
||||||
|
|
||||||
CProfile &profile = m_model->getProfiles()[index];
|
CProfile &profile = m_model->getProfiles()[index];
|
||||||
|
|
||||||
profileIdLabel->setText(QString::number(profile.id));
|
|
||||||
profile.account = accountEdit->text();
|
profile.account = accountEdit->text();
|
||||||
profile.name = nameEdit->text();
|
profile.name = nameEdit->text();
|
||||||
// serverComboBox->setCurrentIndex(0);
|
profile.server = m_serversModel->getServerIDFromIndex(serverComboBox->currentIndex());
|
||||||
profile.arguments = argumentsEdit->text();
|
profile.arguments = argumentsEdit->text();
|
||||||
profile.comments = commentsEdit->toPlainText();
|
profile.comments = commentsEdit->toPlainText();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue