aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/UserInterfaceUtils.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-09-03 12:11:36 +0000
committerSaturneric <[email protected]>2022-09-03 12:11:36 +0000
commit4201e3d55cc3bd467c2e49f694a445744f9af93f (patch)
tree281aa2ad51b2753d6295e821a14d8b1737484855 /src/ui/UserInterfaceUtils.cpp
parentfeat(project): support freebsd build (diff)
downloadGpgFrontend-4201e3d55cc3bd467c2e49f694a445744f9af93f.tar.gz
GpgFrontend-4201e3d55cc3bd467c2e49f694a445744f9af93f.zip
fix(ui): fix user feedback issues.
1. add the font size settings of text editor. 2. fix exception under Russia lang when doing verification.
Diffstat (limited to 'src/ui/UserInterfaceUtils.cpp')
-rw-r--r--src/ui/UserInterfaceUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp
index 586d72ab..25b37a9b 100644
--- a/src/ui/UserInterfaceUtils.cpp
+++ b/src/ui/UserInterfaceUtils.cpp
@@ -53,7 +53,7 @@ void show_verify_details(QWidget *parent, InfoBoardWidget *info_board,
GpgError error, const GpgVerifyResult &verify_result) {
// take out result
info_board->ResetOptionActionsMenu();
- info_board->AddOptionalAction("Show Verify Details", [=]() {
+ info_board->AddOptionalAction(_("Show Verify Details"), [=]() {
VerifyDetailsDialog(parent, error, verify_result);
});
}