From c47e30e960a403631b6dff7a522a775050d59f87 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Mon, 24 Feb 2020 20:10:20 +0100 Subject: double click fixed --- native/src/widget/text_input.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'native/src/widget/text_input.rs') diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs index 4e7906a8..cadef11d 100644 --- a/native/src/widget/text_input.rs +++ b/native/src/widget/text_input.rs @@ -214,12 +214,10 @@ where match self.state.mouse.update(cursor_position) { Interaction::DoubleClick(_) => { + let end = self.state.cursor.end(); self.state.cursor.select_range( - self.value.previous_start_of_word( - self.state.cursor.end(), - ), - self.value - .next_end_of_word(self.state.cursor.end()), + self.value.previous_start_of_word(end), + self.value.next_end_of_word(end), ) } Interaction::TripleClick(_) => { -- cgit