aboutsummaryrefslogtreecommitdiff
path: root/src/identitycollection.cpp
diff options
context:
space:
mode:
authorKarol Kosek <krkk@krkk.ct8.pl>2020-12-26 13:43:25 +0100
committerFelix Queißner <felix@ib-queissner.de>2020-12-27 00:03:30 +0100
commit13ea5684612b85bd897e1e79d88737bc0e691b49 (patch)
tree41339368e31066b0440fa97ecbdfd453901b9f8b /src/identitycollection.cpp
parent136fead7a537d642e700d1696b655c4fed4ae398 (diff)
downloadkristall-13ea5684612b85bd897e1e79d88737bc0e691b49.tar.gz
Use standard icon names
document-{export,import}, and view-certificate aren't in the standard though. https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
Diffstat (limited to 'src/identitycollection.cpp')
-rw-r--r--src/identitycollection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/identitycollection.cpp b/src/identitycollection.cpp
index 36e78cb..45a86a7 100644
--- a/src/identitycollection.cpp
+++ b/src/identitycollection.cpp
@@ -402,7 +402,7 @@ QVariant IdentityCollection::data(const QModelIndex &index, int role) const
switch(item->type) {
case Node::Root: return QVariant { };
case Node::Group: return QIcon::fromTheme("folder");
- case Node::Identity: return QIcon::fromTheme("certificate");
+ case Node::Identity: return QIcon::fromTheme("view-certificate");
default: return QVariant { };
}
}