diff options
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r-- | mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp index 0c0fee5..c498379 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1258,7 +1258,7 @@ void MainWindow::slotShowKeyDetails() KgpgCore::KgpgKey key = mCtx->getKeyDetails(mKeyList->getSelected()->first()); if (key.id() != "") { // TODO: get qml working here ;-) - edit->slotNewQMLTab("KeyDetailsQML", key); + edit->slotNewQMLTab(tr("Key: ") + key.name(), key); new KeyDetailsDialog(mCtx, key, this); } |