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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-04-13 13:19:25 +0300
committerHannah von Reth <vonreth@kde.org>2022-04-13 17:57:48 +0300
commit277ebe0296b0b0edea45cc0029d2f93a3e5e9bb6 (patch)
treee4f1aabac011ed503238583b67ade0cac51726ff /src/gui/navigationpanehelper.cpp
parent8e9727721fbeafb9455e10801d8f586ac70ed9ef (diff)
Add display name to folders
Diffstat (limited to 'src/gui/navigationpanehelper.cpp')
-rw-r--r--src/gui/navigationpanehelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/navigationpanehelper.cpp b/src/gui/navigationpanehelper.cpp
index e5b2910dd..969b34abb 100644
--- a/src/gui/navigationpanehelper.cpp
+++ b/src/gui/navigationpanehelper.cpp
@@ -89,7 +89,7 @@ void NavigationPaneHelper::updateCloudStorageRegistry()
QString clsidPathWow64 = QString() % "Software\\Classes\\Wow6432Node\\CLSID\\" % clsidStr;
QString namespacePath = QString() % "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\" % clsidStr;
- QString title = folder->shortGuiRemotePathOrAppName();
+ QString title = folder->displayName();
// Write the account name in the sidebar only when using more than one account.
if (AccountManager::instance()->accounts().size() > 1)
title = title % " - " % folder->accountState()->account()->displayName();