diff options
author | saturneric <[email protected]> | 2024-11-28 16:40:45 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-28 16:40:52 +0000 |
commit | cee0ce904196e19e5726ac0f811c200aa8d9351b (patch) | |
tree | 7893d1421047f8d5b9a0cebe3723f7683d565fb0 /src/ui/widgets/FilePage.cpp | |
parent | feat: support decrypt & verify email (diff) | |
download | GpgFrontend-cee0ce904196e19e5726ac0f811c200aa8d9351b.tar.gz GpgFrontend-cee0ce904196e19e5726ac0f811c200aa8d9351b.zip |
fix: solve issues on ui
Diffstat (limited to 'src/ui/widgets/FilePage.cpp')
-rw-r--r-- | src/ui/widgets/FilePage.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ui/widgets/FilePage.cpp b/src/ui/widgets/FilePage.cpp index ea80cb58..998b4245 100644 --- a/src/ui/widgets/FilePage.cpp +++ b/src/ui/widgets/FilePage.cpp @@ -156,8 +156,7 @@ void FilePage::update_main_basical_opera_menu(const QString& selected_path) { } if (info.isFile() && (info.suffix() == "sig" || info.suffix() == "gpg" || - info.suffix() == "pgp" || info.suffix() == "asc" || - info.suffix() == "eml")) { + info.suffix() == "pgp" || info.suffix() == "asc")) { operation_type |= MainWindow::OperationMenu::kVerify; } |