From 238d2130728e8a4208062afc03b798e7b690b04d Mon Sep 17 00:00:00 2001 From: fourtf Date: Mon, 26 Aug 2019 13:29:04 +0200 Subject: [PATCH] punctuation changes --- src/widgets/settingspages/GeneralPage.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/widgets/settingspages/GeneralPage.cpp b/src/widgets/settingspages/GeneralPage.cpp index ad8003690..6ee10777a 100644 --- a/src/widgets/settingspages/GeneralPage.cpp +++ b/src/widgets/settingspages/GeneralPage.cpp @@ -222,7 +222,7 @@ void GeneralPage::initLayout(SettingsLayout &layout) layout.addCheckbox("Show deleted messages", s.hideModerated, true); layout.addCheckbox("Show moderation messages", s.hideModerationActions, true); - layout.addCheckbox("Random username color for users who never set a color.", + layout.addCheckbox("Random username color for users who never set a color", s.colorizeNicknames); layout.addDropdown( "Timestamps", {"Disable", "h:mm", "hh:mm", "h:mm a", "hh:mm a"}, @@ -249,7 +249,7 @@ void GeneralPage::initLayout(SettingsLayout &layout) }, [](auto args) { return fuzzyToInt(args.value, 0); }); layout.addDropdown( - "Stack timeouts", {"Stack", "Stack unless timed out", "Don't stack"}, + "Stack timeouts", {"Stack", "Stack until timeout", "Don't stack"}, s.timeoutStackStyle, [](int index) { return index; }, [](auto args) { return args.index; }, false); @@ -310,7 +310,7 @@ void GeneralPage::initLayout(SettingsLayout &layout) }, [](auto args) { return fuzzyToFloat(args.value, 63.f); }); layout.addCheckbox("Show link info when hovering", s.linkInfoTooltip); - layout.addCheckbox("Double click to open links and other elements in chat.", + layout.addCheckbox("Double click to open links and other elements in chat", s.linksDoubleClickOnly); layout.addCheckbox("Unshorten links", s.unshortLinks); layout.addCheckbox("Show live indicator in tabs", s.showTabLive); @@ -324,8 +324,6 @@ void GeneralPage::initLayout(SettingsLayout &layout) "Only search for emote autocompletion at the start of emote names", s.prefixOnlyEmoteCompletion); - layout.addSpacing(16); - layout.addCheckbox("Show twitch whispers inline", s.inlineWhispers); layout.addCheckbox("Highlight received inline whispers", s.highlightInlineWhispers);