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 <vonreth@kde.org>2022-05-05 17:31:41 +0300
committerHannah von Reth <vonreth@kde.org>2022-05-06 10:48:44 +0300
commit0a1f31dd09b0d350ef59741237c3962dbcb8d7dd (patch)
tree9199d753a0d0e1c602b7d78822b075511078d4b0 /src/gui/spaces
parentc661ed3c4dc18e92b70885869b65fe1b0bbadf10 (diff)
Name the personal space `Personal`
Diffstat (limited to 'src/gui/spaces')
-rw-r--r--src/gui/spaces/spacesmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/spaces/spacesmodel.cpp b/src/gui/spaces/spacesmodel.cpp
index 924d84384..ca7388411 100644
--- a/src/gui/spaces/spacesmodel.cpp
+++ b/src/gui/spaces/spacesmodel.cpp
@@ -81,7 +81,7 @@ QVariant SpacesModel::data(const QModelIndex &index, int role) const
case Qt::DisplayRole:
switch (column) {
case Columns::Name:
- return item.getName();
+ return GraphApi::Drives::getDriveDisplayName(item);
case Columns::Description:
return item.getDescription();
case Columns::WebUrl: