Skip to content

Commit

Permalink
Fix: Incorrect tab focus in reply threads (#4739)
Browse files Browse the repository at this point in the history
* Fix: Incorrect tab focus in reply threads
fixes #4737

* Append to changelog

---------

Co-authored-by: Felanbird <[email protected]>
  • Loading branch information
brian6932 and Felanbird authored Jul 29, 2023
1 parent 9cb59f7 commit c496a68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions src/widgets/dialogs/ReplyThreadPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ ReplyThreadPopup::ReplyThreadPopup(bool closeAutomatically, QWidget *parent,
}
});
hbox->addWidget(this->ui_.notificationCheckbox, 1);
this->ui_.notificationCheckbox->setFocusPolicy(Qt::ClickFocus);
}

if (closeAutomatically)
Expand Down

0 comments on commit c496a68

Please sign in to comment.