summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/qt5/horizonhelpwindow.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/qt5/horizonhelpwindow.cc b/ui/qt5/horizonhelpwindow.cc
index 259f11f..fb05ba9 100644
--- a/ui/qt5/horizonhelpwindow.cc
+++ b/ui/qt5/horizonhelpwindow.cc
@@ -29,8 +29,10 @@ HorizonHelpWindow::HorizonHelpWindow(QFile *helpFile, QWidget *parent) :
helpText = new QTextEdit(this);
helpText->setReadOnly(true);
helpText->setHtml(helpFile->readAll().toStdString().c_str());
+ helpText->setWhatsThis(tr("This window contains information about the current page of Adélie Linux System Installation."));
buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok, this);
+ buttonBox->setWhatsThis(tr("Choose OK to close this window and return to Adélie Linux System Installation."));
connect(buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
layout = new QVBoxLayout();