From bad32a75112de620f660a75d398f74d36ccd446e Mon Sep 17 00:00:00 2001 From: Felanbird <41973452+Felanbird@users.noreply.github.com> Date: Wed, 7 Dec 2022 17:46:41 -0500 Subject: [PATCH] Fix accidental change of `stripReplyMention` setting (#4225) --- src/widgets/settingspages/GeneralPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/settingspages/GeneralPage.cpp b/src/widgets/settingspages/GeneralPage.cpp index dff4f659..079b1d8d 100644 --- a/src/widgets/settingspages/GeneralPage.cpp +++ b/src/widgets/settingspages/GeneralPage.cpp @@ -848,7 +848,7 @@ void GeneralPage::initLayout(GeneralPageView &layout) layout.addCheckbox("Messages in /mentions highlights tab", s.highlightMentions); layout.addCheckbox( - "Strip leading mention in replies", s.stripReplyMention, true, + "Strip leading mention in replies", s.stripReplyMention, false, "When disabled, messages sent in reply threads will include the " "@mention for the related thread. If the reply context is hidden, " "these mentions will never be stripped.");