From 285c2e86887f1a63f86b7859fcfe4145ca1e3e21 Mon Sep 17 00:00:00 2001 From: fourtf Date: Tue, 16 Jan 2018 18:59:10 +0100 Subject: [PATCH] Fixes #243 --- src/widgets/settingspages/behaviourpage.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/widgets/settingspages/behaviourpage.cpp b/src/widgets/settingspages/behaviourpage.cpp index 3a039270a..f3305d0d0 100644 --- a/src/widgets/settingspages/behaviourpage.cpp +++ b/src/widgets/settingspages/behaviourpage.cpp @@ -25,9 +25,9 @@ BehaviourPage::BehaviourPage() auto form = layoutCreator.emplace().withoutMargin(); { form->addRow("Window:", this->createCheckBox(WINDOW_TOPMOST, settings.windowTopMost)); - form->addRow("Messages:", this->createCheckBox(INPUT_EMPTY, settings.windowTopMost)); - form->addRow("", this->createCheckBox(LAST_MSG, settings.windowTopMost)); - form->addRow("Pause chat:", this->createCheckBox(PAUSE_HOVERING, settings.windowTopMost)); + form->addRow("Messages:", this->createCheckBox(INPUT_EMPTY, settings.hideEmptyInput)); + form->addRow("", this->createCheckBox(LAST_MSG, settings.showLastMessageIndicator)); + form->addRow("Pause chat:", this->createCheckBox(PAUSE_HOVERING, settings.pauseChatHover)); form->addRow("Mouse scroll speed:", this->createMouseScrollSlider()); form->addRow("Streamlink path:", this->createLineEdit(settings.streamlinkPath));