diff --git a/CHANGELOG.md b/CHANGELOG.md index 3aacff6ae16..4c0b0f21dae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -85,6 +85,7 @@ - Dev: Update vcpkg build Qt from 6.5.0 to 6.7.0, boost from 1.83.0 to 1.85.0, openssl from 3.1.3 to 3.3.0. (#5422) - Dev: Unsingletonize `ISoundController`. (#5462) - Dev: Use Qt's high DPI scaling. (#4868, #5400) +- Dev: Removed cosmetic "Also match the trigger at the end of the message" setting. (#5745) - Dev: Add doxygen build target. (#5377) - Dev: Make printing of strings in tests easier. (#5379) - Dev: Refactor and document `Scrollbar`. (#5334, #5393) diff --git a/src/singletons/Settings.hpp b/src/singletons/Settings.hpp index c262dd23a46..e996a83250d 100644 --- a/src/singletons/Settings.hpp +++ b/src/singletons/Settings.hpp @@ -295,9 +295,6 @@ class Settings BoolSetting mentionUsersWithComma = {"/behaviour/mentionUsersWithComma", true}; - /// Commands - BoolSetting allowCommandsAtEnd = {"/commands/allowCommandsAtEnd", false}; - /// Emotes BoolSetting scaleEmotesByLineHeight = {"/emotes/scaleEmotesByLineHeight", false}; diff --git a/src/widgets/settingspages/CommandPage.cpp b/src/widgets/settingspages/CommandPage.cpp index 3b1409f2a8a..833ba713aa6 100644 --- a/src/widgets/settingspages/CommandPage.cpp +++ b/src/widgets/settingspages/CommandPage.cpp @@ -123,10 +123,6 @@ CommandPage::CommandPage() }); } - layout.append( - this->createCheckBox("Also match the trigger at the end of the message", - getSettings()->allowCommandsAtEnd)); - QLabel *text = layout.emplace(HELP_TEXT).getElement(); text->setWordWrap(true); text->setStyleSheet("color: #bbb");