some initial delegate stuff

This commit is contained in:
Blue 2023-01-07 17:30:22 +03:00
parent 5aa0f4bca9
commit 78ef3664f7
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
8 changed files with 157 additions and 6 deletions

View file

@ -46,6 +46,9 @@ QVariant UI::KeysModel::data(const QModelIndex& index, int role) const {
case Qt::DisplayRole:
answer = keys[i]->label;
break;
case FingerPrint:
answer = keys[i]->fingerPrint;
break;
}
return answer;