diff options
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/ui/conversation_view_controller.vala | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/src/ui/conversation_view_controller.vala b/main/src/ui/conversation_view_controller.vala index 31c7e612..dce9920e 100644 --- a/main/src/ui/conversation_view_controller.vala +++ b/main/src/ui/conversation_view_controller.vala @@ -151,6 +151,10 @@ public class ConversationViewController : Object { } private bool forward_key_press_to_chat_input(EventKey event) { + if (((Gtk.Window)view.get_toplevel()).get_focus() is TextView) { + return false; + } + // Don't forward / change focus on Control / Alt if (event.keyval == Gdk.Key.Control_L || event.keyval == Gdk.Key.Control_R || event.keyval == Gdk.Key.Alt_L || event.keyval == Gdk.Key.Alt_R) { |