aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/QuitDialog.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-07-05 19:51:44 +0000
committerSaturneric <[email protected]>2021-07-05 19:51:44 +0000
commitc8cbfb2e8638691e4028d889dcb3222064b19339 (patch)
tree86538afc364b8d0b375b4b94282d1613427ab617 /src/ui/QuitDialog.cpp
parentIntroduce multithreading. (diff)
downloadGpgFrontend-c8cbfb2e8638691e4028d889dcb3222064b19339.tar.gz
GpgFrontend-c8cbfb2e8638691e4028d889dcb3222064b19339.zip
Improve large file reading.
Add loading animation. Other improvements.
Diffstat (limited to '')
-rwxr-xr-xsrc/ui/QuitDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/QuitDialog.cpp b/src/ui/QuitDialog.cpp
index 5ebedc20..783a8a61 100755
--- a/src/ui/QuitDialog.cpp
+++ b/src/ui/QuitDialog.cpp
@@ -74,7 +74,7 @@ QuitDialog::QuitDialog(QWidget *parent, const QHash<int, QString>& unsavedDocs)
auto *warn_icon = new QLabel();
warn_icon->setPixmap(pixmap);
auto *warn_label = new QLabel(
- tr("<h3>%1 files contain unsaved information.<br/>Save the changes before closing?</h3>").arg(row));
+ tr("%1 files contain unsaved information.<br/>Save the changes before closing?").arg(row));
auto *warnBoxLayout = new QHBoxLayout();
warnBoxLayout->addWidget(warn_icon);
warnBoxLayout->addWidget(warn_label);