diff options
Diffstat (limited to 'src/ui/widgets/KeyList.cpp')
-rw-r--r-- | src/ui/widgets/KeyList.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/widgets/KeyList.cpp b/src/ui/widgets/KeyList.cpp index 02a8dd92..89634f95 100644 --- a/src/ui/widgets/KeyList.cpp +++ b/src/ui/widgets/KeyList.cpp @@ -583,6 +583,11 @@ void KeyTable::Refresh(KeyLinkListPtr m_keys) { if (it->is_private_key() && !it->has_master_key()) { type_steam << "#"; } + + if(it->HasCardKey()) { + type_steam << "^"; + } + auto* tmp1 = new QTableWidgetItem(type_str); key_list->setItem(row_index, 1, tmp1); |