Make sure to update profile information box when auto loading a profile

This commit is contained in:
Mark Watkins 2018-06-05 09:41:06 +10:00
parent f794dbd1d3
commit 7e5d695726
2 changed files with 3 additions and 27 deletions

View File

@ -195,35 +195,11 @@ void ProfileSelector::updateProfileHighlight(QString name)
proxy->setData(proxy->index(row, i, QModelIndex()), bg, Qt::ForegroundRole);
// proxy->setData(model->index(row, i, QModelIndex()), font, Qt::FontRole);
}
on_selectionChanged(proxy->index(row, 0, QModelIndex()), QModelIndex());
break;
}
}
/*if (p_profile) {
QString html = QString();
if (!p_profile->user->lastName().isEmpty() && !p_profile->user->firstName().isEmpty()) {
html += tr("Name: %1, %2").arg(p_profile->user->lastName()).arg(p_profile->user->firstName())+"<br/>";
}
if (!p_profile->user->phone().isEmpty()) {
html += tr("Phone: %1").arg(p_profile->user->phone())+"<br/>";
}
if (!p_profile->user->email().isEmpty()) {
html += tr("Email: <a href='mailto:%1'>%1</a>").arg(p_profile->user->email())+"<br/>";
}
if (!p_profile->user->address().isEmpty()) {
html += "<br/>"+tr("Address:")+"<br/>"+p_profile->user->address().trimmed().replace("\n","<br/>")+"<br/>";
}
if (html.isEmpty()) {
html += tr("No profile information given")+"<br/>";
}
ui->diskSpaceInfo->setVisible(true);
ui->profileInfoGroupBox->setTitle(tr("Current Profile: %1").arg(name));
ui->profileInfoLabel->setText(html);
} else {
ui->diskSpaceInfo->setVisible(false);
} */
}
void ProfileSelector::SelectProfile(QString profname)

View File

@ -265,7 +265,7 @@
</font>
</property>
<property name="text">
<string>Please open or create a profile...</string>
<string>Please select or create a profile...</string>
</property>
<property name="textFormat">
<enum>Qt::AutoText</enum>