diff options
| author | cents <sens03.con@gmail.com> | 2020-04-20 12:34:54 -0700 |
|---|---|---|
| committer | cents <sens03.con@gmail.com> | 2020-04-20 12:37:28 -0700 |
| commit | 8fa96535efbfff148964b33cd0f1a0e0e479ddb6 (patch) | |
| tree | c574d79863ad8cce71be09279eefe96ab6bbfd30 | |
| parent | 5b6d58bd020978f4632cb2dcb2db620213175645 (diff) | |
Hooked up the new settings
Did you know you could scale the iclog with ctrl + mouse wheel?
| -rw-r--r-- | src/aooptionsdialog.cpp | 2 | ||||
| -rw-r--r-- | src/courtroom.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/aooptionsdialog.cpp b/src/aooptionsdialog.cpp index e2f433d5..f6507d5e 100644 --- a/src/aooptionsdialog.cpp +++ b/src/aooptionsdialog.cpp @@ -193,7 +193,7 @@ AOOptionsDialog::AOOptionsDialog(QWidget *parent, AOApplication *p_ao_app) ui_slower_blips_lb->setText(tr("Slower text speed:")); ui_slower_blips_lb->setToolTip(tr("Set the text speed to be the same as the AA games.")); ui_slower_blips_cb = new QCheckBox(ui_form_layout_widget); - ui_slower_blips_cb->setChecked(p_ao_app->get_pundelay()); + ui_slower_blips_cb->setChecked(p_ao_app->get_slower_blips()); ui_gameplay_form->setWidget(10, QFormLayout::FieldRole, ui_slower_blips_cb); ui_gameplay_form->setWidget(10, QFormLayout::LabelRole, ui_slower_blips_lb); diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 0cacffcf..050d606f 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -166,6 +166,7 @@ Courtroom::Courtroom(AOApplication *p_ao_app) : QMainWindow() ui_ooc_chat_name->setText(p_ao_app->get_default_username());
punctuation_modifier = p_ao_app->get_pundelay();
+ slower_blips = p_ao_app->get_slower_blips();
colorf_iclog = p_ao_app->get_colored_iclog_enabled();
mirror_iclog = p_ao_app->get_iclmir_enabled();
colorf_limit = p_ao_app->colorlog_restricted_enabled();
@@ -4256,6 +4257,7 @@ void Courtroom::on_reload_theme_clicked() {
ao_app->reload_theme();
punctuation_modifier = ao_app->get_pundelay();
+ slower_blips = ao_app->get_slower_blips();
colorf_iclog = ao_app->get_colored_iclog_enabled();
mirror_iclog = ao_app->get_iclmir_enabled();
colorf_limit = ao_app->colorlog_restricted_enabled();
|
