diff options
author | Saturneric <[email protected]> | 2022-01-12 00:13:18 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-12 00:13:18 +0000 |
commit | dce25f712d22e9eaac12f033814f4bca9c1beb70 (patch) | |
tree | 763237951361361edc3767786ea53c93867f7d98 /src/ui/main_window/MainWindowFileSlotFunction.cpp | |
parent | <fix>(ui): Add ReceiveMailDialog's functions definition (diff) | |
download | GpgFrontend-dce25f712d22e9eaac12f033814f4bca9c1beb70.tar.gz GpgFrontend-dce25f712d22e9eaac12f033814f4bca9c1beb70.zip |
<fix>(ui): Fixed some bugs in tooltips.
1. Some tooltips are not aligned with the parent interface.
2. The text of some tooltips should be checked instead of selected.
Diffstat (limited to 'src/ui/main_window/MainWindowFileSlotFunction.cpp')
-rw-r--r-- | src/ui/main_window/MainWindowFileSlotFunction.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/main_window/MainWindowFileSlotFunction.cpp b/src/ui/main_window/MainWindowFileSlotFunction.cpp index 286cef3a..3f509f3c 100644 --- a/src/ui/main_window/MainWindowFileSlotFunction.cpp +++ b/src/ui/main_window/MainWindowFileSlotFunction.cpp @@ -211,8 +211,8 @@ void MainWindow::slotFileSign() { if (keys->empty()) { QMessageBox::critical( - this, _("No Key Selected"), - _("Please select the key in the key toolbox on the right.")); + this, _("No Key Checked"), + _("Please check the key in the key toolbox on the right.")); return; } @@ -383,8 +383,8 @@ void MainWindow::slotFileEncryptSign() { if (p_keys->empty()) { QMessageBox::critical( - this, _("No Key Selected"), - _("Please select the key in the key toolbox on the right.")); + this, _("No Key Checked"), + _("Please check the key in the key toolbox on the right.")); return; } |