Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Weilbach <felix.weilbach@nextcloud.com>2021-06-25 13:36:43 +0300
committerFelix Weilbach (Rebase PR Action) <felix.weilbach@t-online.de>2021-06-25 23:13:06 +0300
commit015a5ae235ddc332e3e1e50700c7d2579e6da93a (patch)
tree7d630fda66c5d11ef33d98bba6ca5cf03dee61a8 /src
parentae7269e1563902bb263fdead7f88855d3e566c53 (diff)
Don't display account name in italic
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/gui/accountsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp
index 80608846f..df3b3c112 100644
--- a/src/gui/accountsettings.cpp
+++ b/src/gui/accountsettings.cpp
@@ -1124,7 +1124,7 @@ void AccountSettings::slotAccountStateChanged()
if (user.isEmpty()) {
user = cred->user();
}
- serverWithUser = tr("%1 as <i>%2</i>").arg(server, Utility::escape(user));
+ serverWithUser = tr("%1 as %2").arg(server, Utility::escape(user));
}
switch (state) {