diff options
-rw-r--r-- | native/src/widget/text_input.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs index 9fc7c6e6..43e48d00 100644 --- a/native/src/widget/text_input.rs +++ b/native/src/widget/text_input.rs @@ -457,15 +457,6 @@ where self.state.is_pasting = None; } } - // I think this doesn't work with the current version of the clipboard lib - /*keyboard::KeyCode::C => { - if platform::is_copy_paste_modifier_pressed(modifiers) { - match self.state.cursor.selection_position() { - None => (), - Some((left, right)) => () - } - } - }*/ keyboard::KeyCode::A => { if platform::is_copy_paste_modifier_pressed(modifiers) { self.state.cursor.select_all(&self.value); |