From bab198aa131d4856a5af1668494d96cbcd612c0f Mon Sep 17 00:00:00 2001 From: saturneric Date: Tue, 23 Jan 2024 21:24:14 +0800 Subject: feat: improve key list and find widget --- src/ui/dialog/Wizard.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/ui/dialog/Wizard.cpp') diff --git a/src/ui/dialog/Wizard.cpp b/src/ui/dialog/Wizard.cpp index 89ebee27..b6fa53f3 100644 --- a/src/ui/dialog/Wizard.cpp +++ b/src/ui/dialog/Wizard.cpp @@ -218,20 +218,20 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) { setTitle(tr("Ready.")); setSubTitle(tr("Have fun with GpgFrontend!")); - auto* bottomLabel = new QLabel( + auto* bottom_label = new QLabel( tr("You are ready to use GpgFrontend now.

") + "" + tr("The Online Document") + "" + tr(" will get you started with GpgFrontend. Anytime you encounter " "problems, please try to find help from the documentation") + "
"); - bottomLabel->setTextFormat(Qt::RichText); - bottomLabel->setTextInteractionFlags(Qt::TextBrowserInteraction); - bottomLabel->setOpenExternalLinks(true); - bottomLabel->setWordWrap(true); + bottom_label->setTextFormat(Qt::RichText); + bottom_label->setTextInteractionFlags(Qt::TextBrowserInteraction); + bottom_label->setOpenExternalLinks(true); + bottom_label->setWordWrap(true); open_help_check_box_ = new QCheckBox(tr("Open offline help.")); open_help_check_box_->setChecked(true); @@ -243,7 +243,7 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) { // registerField("openHelp", openHelpCheckBox); auto* layout = new QVBoxLayout; - layout->addWidget(bottomLabel); + layout->addWidget(bottom_label); // layout->addWidget(openHelpCheckBox); layout->addWidget(dont_show_wizard_checkbox_); setLayout(layout); -- cgit v1.2.3