From c496a686336daa6a2c0857a0459fdadabe191dc2 Mon Sep 17 00:00:00 2001 From: Brian <18603393+brian6932@users.noreply.github.com> Date: Sat, 29 Jul 2023 13:06:12 -0400 Subject: [PATCH] Fix: Incorrect tab focus in reply threads (#4739) * Fix: Incorrect tab focus in reply threads fixes #4737 * Append to changelog --------- Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com> --- CHANGELOG.md | 2 +- src/widgets/dialogs/ReplyThreadPopup.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56a73c3e..f354bb11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ - Minor: Improved editing hotkeys. (#4628) - Minor: The input completion and quick switcher are now styled to match your theme. (#4671) - Minor: Added setting to only show tabs with live channels (default toggle hotkey: Ctrl+Shift+L). (#4358) -- Minor: Added option to subscribe to and unsubscribe from reply threads. (#4680) +- Minor: Added option to subscribe to and unsubscribe from reply threads. (#4680, #4739) - Minor: Added a message for when Chatterino joins a channel (#4616) - Minor: Add accelerators to the right click menu for messages (#4705) - Minor: Add pin action to usercards and reply threads. (#4692) diff --git a/src/widgets/dialogs/ReplyThreadPopup.cpp b/src/widgets/dialogs/ReplyThreadPopup.cpp index 4abb4a6b..b2abd5fd 100644 --- a/src/widgets/dialogs/ReplyThreadPopup.cpp +++ b/src/widgets/dialogs/ReplyThreadPopup.cpp @@ -150,6 +150,7 @@ ReplyThreadPopup::ReplyThreadPopup(bool closeAutomatically, QWidget *parent, } }); hbox->addWidget(this->ui_.notificationCheckbox, 1); + this->ui_.notificationCheckbox->setFocusPolicy(Qt::ClickFocus); } if (closeAutomatically)