diff options
author | Saturneric <[email protected]> | 2021-07-05 19:51:44 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-05 19:51:44 +0000 |
commit | c8cbfb2e8638691e4028d889dcb3222064b19339 (patch) | |
tree | 86538afc364b8d0b375b4b94282d1613427ab617 /src/ui/QuitDialog.cpp | |
parent | Introduce multithreading. (diff) | |
download | GpgFrontend-c8cbfb2e8638691e4028d889dcb3222064b19339.tar.gz GpgFrontend-c8cbfb2e8638691e4028d889dcb3222064b19339.zip |
Improve large file reading.
Add loading animation.
Other improvements.
Diffstat (limited to '')
-rwxr-xr-x | src/ui/QuitDialog.cpp | 2 |
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); |