diff options
author | fiaxh <git@lightrise.org> | 2019-04-15 17:29:18 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2019-04-15 17:29:18 +0200 |
commit | ca9b00d5e8e494ec46bc28259a104ade3adaa40c (patch) | |
tree | 4a215ea997b0454866c5390801ede9d902009b34 /main/src/ui/chat_input/view.vala | |
parent | 76c7dec75f052cfaf9c3b469ba9d658a71075b6b (diff) | |
download | dino-ca9b00d5e8e494ec46bc28259a104ade3adaa40c.tar.gz dino-ca9b00d5e8e494ec46bc28259a104ade3adaa40c.zip |
Forward KeyEvent (and change focus) on key press in conversation view (not chat input)
fixes #28
fixes #513
Diffstat (limited to 'main/src/ui/chat_input/view.vala')
-rw-r--r-- | main/src/ui/chat_input/view.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/chat_input/view.vala b/main/src/ui/chat_input/view.vala index 5e1ccb71..a33e8b53 100644 --- a/main/src/ui/chat_input/view.vala +++ b/main/src/ui/chat_input/view.vala @@ -26,7 +26,7 @@ public class View : Box { [GtkChild] private Frame frame; [GtkChild] private ScrolledWindow scrolled; - [GtkChild] private TextView text_input; + [GtkChild] public TextView text_input; [GtkChild] private Box outer_box; [GtkChild] private Button file_button; [GtkChild] private Separator file_separator; |