From e170b712d7501a160e4313816ec45d7e4e652f92 Mon Sep 17 00:00:00 2001 From: Imbris Date: Thu, 21 Mar 2019 23:55:52 -0400 Subject: [PATCH] remove chat message echoing by ui Former-commit-id: f97358f3bdb39048ed705abff17cbd4c949dbaf3 --- voxygen/src/hud/chat.rs | 38 ++++++++++++++++---------------------- 1 file changed, 16 insertions(+), 22 deletions(-) diff --git a/voxygen/src/hud/chat.rs b/voxygen/src/hud/chat.rs index 602ce51e34..e18ff958e0 100644 --- a/voxygen/src/hud/chat.rs +++ b/voxygen/src/hud/chat.rs @@ -54,27 +54,6 @@ impl Chat { } } pub fn update_layout(&mut self, ui_widgets: &mut UiCell) -> Option { - // If enter is pressed send the current message - let new_msg = if ui_widgets - .widget_input(self.ids.input) - .presses() - .key() - .any(|key_press| match key_press.key { - Key::Return => true, - _ => false, - }) - { - let new_message = self.input.clone(); - self.input.clear(); - self.new_message(new_message.clone()); - // Scroll to the bottom - // TODO: uncomment when we can actually get chat messages from other people - //ui_widgets.scroll_widget(self.ids.message_box, [0.0, std::f64::MAX]); - Some(new_message) - } else { - None - }; - // Maintain scrolling if self.new_messages { self.scroll_new_messages(ui_widgets); @@ -127,6 +106,21 @@ impl Chat { s.set(ui_widgets) } - new_msg + // If enter is pressed send the current message + if ui_widgets + .widget_input(self.ids.input) + .presses() + .key() + .any(|key_press| match key_press.key { + Key::Return => true, + _ => false, + }) + { + let new_message = self.input.clone(); + self.input.clear(); + Some(new_message) + } else { + None + } } }