Changed: Update shorcuts

--HG--
branch : feature-ryzom-installer
This commit is contained in:
kervala 2016-03-12 22:01:03 +01:00
parent 95f6b154fb
commit 30703b5591

View file

@ -96,6 +96,7 @@ void CProfilesDialog::displayProfile(int index)
const CProfile &profile = m_model->getProfiles()[index];
// update all widgets with content of profile
profileIdLabel->setText(QString::number(profile.id));
accountEdit->setText(profile.account);
nameEdit->setText(profile.name);
@ -123,6 +124,8 @@ void CProfilesDialog::saveProfile(int index)
profile.server = m_serversModel->getServerIDFromIndex(serverComboBox->currentIndex());
profile.arguments = argumentsEdit->text();
profile.comments = commentsEdit->toPlainText();
profile.desktopShortcut = desktopShortcutCheckBox->isChecked();
profile.menuShortcut = menuShortcutCheckBox->isChecked();
}
void CProfilesDialog::deleteProfile(int index)