mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: Split input sometimes not accepting focus (#4958)
This commit is contained in:
parent
244efaa0a9
commit
95620e6e10
|
@ -15,6 +15,7 @@
|
|||
- Bugfix: Fixed capitalized channel names in log inclusion list not being logged. (#4848)
|
||||
- Bugfix: Trimmed custom streamlink paths on all platforms making sure you don't accidentally add spaces at the beginning or end of its path. (#4834)
|
||||
- Bugfix: Fixed a performance issue when displaying replies to certain messages. (#4807)
|
||||
- Bugfix: Fixed an issue where certain parts of the split input wouldn't focus the split when clicked. (#4958)
|
||||
- Bugfix: Fixed a data race when disconnecting from Twitch PubSub. (#4771)
|
||||
- Bugfix: Fixed `/shoutout` command not working with usernames starting with @'s (e.g. `/shoutout @forsen`). (#4800)
|
||||
- Bugfix: Fixed Usercard popup not floating on tiling WMs on Linux when "Automatically close user popup when it loses focus" setting is enabled. (#3511)
|
||||
|
|
|
@ -691,6 +691,8 @@ void SplitInput::installKeyPressedEvent()
|
|||
|
||||
void SplitInput::mousePressEvent(QMouseEvent *event)
|
||||
{
|
||||
this->giveFocus(Qt::MouseFocusReason);
|
||||
|
||||
if (this->hidden)
|
||||
{
|
||||
BaseWidget::mousePressEvent(event);
|
||||
|
|
Loading…
Reference in a new issue