From ec6c24c2b41fc9de704323ce895b2dc81549ca5e Mon Sep 17 00:00:00 2001 From: Karim Malhas Date: Sat, 22 Apr 2023 13:20:24 +0200 Subject: Focus ChatInput textbox after selecting emoji After selecting an emoji, the emoji is inserted into the textbox, but focus remains on the emoji_button. This causes the EmojiChooser to be opened again if a user hits the Enter key directly, but text is inserted into the textbox if they continue to type. This commit just explicitely focuses on the textbox after an emoji has been selected. --- main/src/ui/chat_input/view.vala | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main/src') diff --git a/main/src/ui/chat_input/view.vala b/main/src/ui/chat_input/view.vala index e16b4085..96986b58 100644 --- a/main/src/ui/chat_input/view.vala +++ b/main/src/ui/chat_input/view.vala @@ -39,6 +39,8 @@ public class View : Box { chooser.emoji_picked.connect((emoji) => { chat_text_view.text_view.buffer.insert_at_cursor(emoji, emoji.data.length); }); + chooser.closed.connect(do_focus); + emoji_button.set_popover(chooser); file_button.tooltip_text = Util.string_if_tooltips_active(_("Send a file")); -- cgit v1.2.3-54-g00ecf