mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add email info and fix address empty check in profile select
This commit is contained in:
parent
7ced9d50ae
commit
51eb1d09a4
@ -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/>";
|
||||
}
|
||||
|
||||
|
@ -277,7 +277,7 @@
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>false</bool>
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user