From 1a3f500034fe794cff6ad418754bc29d7d3dc78c Mon Sep 17 00:00:00 2001 From: Crystalwarrior Date: Wed, 27 Jan 2021 19:58:29 +0300 Subject: [PATCH] Update text scrawl tooltip info and spinbox suffix --- src/aooptionsdialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/aooptionsdialog.cpp b/src/aooptionsdialog.cpp index 903fc6e..d10f6b0 100644 --- a/src/aooptionsdialog.cpp +++ b/src/aooptionsdialog.cpp @@ -222,11 +222,12 @@ AOOptionsDialog::AOOptionsDialog(QWidget *parent, AOApplication *p_ao_app) ui_text_scrawl_lbl = new QLabel(ui_form_layout_widget); ui_text_scrawl_lbl->setText(tr("Text Scrawl:")); ui_text_scrawl_lbl->setToolTip(tr( - "Amount of time spent on each letter when the in-character text is being displayed.")); + "Amount of time (in miliseconds) spent on each letter when the in-character text is being displayed.")); ui_gameplay_form->setWidget(row, QFormLayout::LabelRole, ui_text_scrawl_lbl); ui_text_scrawl_spinbox = new QSpinBox(ui_form_layout_widget); + ui_text_scrawl_spinbox->setSuffix(" ms"); ui_text_scrawl_spinbox->setMaximum(500); ui_text_scrawl_spinbox->setValue(p_ao_app->get_text_scrawl());