mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
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>
This commit is contained in:
parent
9cb59f753f
commit
c496a68633
2 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -150,6 +150,7 @@ ReplyThreadPopup::ReplyThreadPopup(bool closeAutomatically, QWidget *parent,
|
|||
}
|
||||
});
|
||||
hbox->addWidget(this->ui_.notificationCheckbox, 1);
|
||||
this->ui_.notificationCheckbox->setFocusPolicy(Qt::ClickFocus);
|
||||
}
|
||||
|
||||
if (closeAutomatically)
|
||||
|
|
Loading…
Reference in a new issue