Add email info and fix address empty check in profile select

This commit is contained in:
Mark Watkins 2018-05-07 07:51:55 +10:00
parent 7ced9d50ae
commit 51eb1d09a4
2 changed files with 5 additions and 2 deletions

View File

@ -193,7 +193,10 @@ void ProfileSelector::updateProfileHighlight(QString name)
if (!p_profile->user->phone().isEmpty()) {
html += tr("Phone: %1").arg(p_profile->user->phone())+"<br/>";
}
if (!p_profile->user->phone().isEmpty()) {
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/>";
}

View File

@ -277,7 +277,7 @@
<bool>true</bool>
</property>
<property name="openExternalLinks">
<bool>false</bool>
<bool>true</bool>
</property>
</widget>
</item>