mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
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:
parent
7079729591
commit
9cb59f753f
|
@ -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)
|
||||
|
|
|
@ -307,6 +307,7 @@ void SplitInput::openEmotePopup()
|
|||
textToInsert = " " + textToInsert;
|
||||
}
|
||||
this->insertText(textToInsert);
|
||||
this->ui_.textEdit->activateWindow();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue