focus message input when selecting emotes in emote popup (#4719)

* focus input when selecting emotes in emote popup

* changelog

---------

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
Abhinav Neelam 2023-07-29 06:16:19 -07:00 committed by GitHub
parent 7079729591
commit 9cb59f753f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -2,6 +2,7 @@
## Unversioned
- Minor: Message input is now focused when clicking on emotes. (#4719)
- Minor: Changed viewer list to chatter list to more match Twitch's terminology. (#4732)
- Minor: Nicknames are now taken into consideration when searching for messages. (#4663)
- Minor: Add an icon showing when streamer mode is enabled (#4410, #4690)

View file

@ -307,6 +307,7 @@ void SplitInput::openEmotePopup()
textToInsert = " " + textToInsert;
}
this->insertText(textToInsert);
this->ui_.textEdit->activateWindow();
}
});
}