diff options
author | fiaxh <git@mx.ax.lt> | 2017-03-16 16:28:32 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-03-16 19:46:22 +0100 |
commit | 6f3eee1430b1e3bdb22b8c532f8b609015d01bfb (patch) | |
tree | 13453938a7583d2d304bd9425c43a21e13f0c476 /main/src/ui/unified_window.vala | |
parent | af49a47cf6c5933a9bcc21f2b7bb20d85be37483 (diff) | |
download | dino-6f3eee1430b1e3bdb22b8c532f8b609015d01bfb.tar.gz dino-6f3eee1430b1e3bdb22b8c532f8b609015d01bfb.zip |
Improve when to send chat state notifications
Diffstat (limited to 'main/src/ui/unified_window.vala')
-rw-r--r-- | main/src/ui/unified_window.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/ui/unified_window.vala b/main/src/ui/unified_window.vala index 269799c2..0f33450d 100644 --- a/main/src/ui/unified_window.vala +++ b/main/src/ui/unified_window.vala @@ -68,12 +68,12 @@ public class UnifiedWindow : Window { } private bool on_focus_in_event() { - ChatInteraction.get_instance(stream_interactor).window_focus_in(conversation); + ChatInteraction.get_instance(stream_interactor).on_window_focus_in(conversation); return false; } private bool on_focus_out_event() { - ChatInteraction.get_instance(stream_interactor).window_focus_out(conversation); + ChatInteraction.get_instance(stream_interactor).on_window_focus_out(conversation); return false; } } |