From 4aa4ec9bf390311bab6f4969e2b26755de201dd8 Mon Sep 17 00:00:00 2001 From: SET Date: Mon, 16 Nov 2020 14:44:14 +0100 Subject: [PATCH] Hide export button with successful key search. No key is selected after this. --- K7Main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/K7Main.cpp b/K7Main.cpp index ec892b5..61f4455 100644 --- a/K7Main.cpp +++ b/K7Main.cpp @@ -250,6 +250,7 @@ void K7Main::Search() DisplayKeys(pubkList, TR("Publics"), true); if (privkList.size() && m_config->PrivateKeyIds().size() > 0) DisplayKeys(privkList, TR("Secrets"), false); + m_btnExport->hide(); } WString K7Main::MakeDateTimeLabel(time_t ticks)