From c1e3e978a225d57bf365f61e0d35394ad1e85950 Mon Sep 17 00:00:00 2001 From: pm100 Date: Mon, 10 Apr 2023 16:37:43 -0700 Subject: [PATCH] fix test failure on nightly due to cef81dc --- src/components/textinput.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/textinput.rs b/src/components/textinput.rs index 2d59a41f..a87e50ba 100644 --- a/src/components/textinput.rs +++ b/src/components/textinput.rs @@ -251,7 +251,7 @@ impl TextInputComponent { let cursor_highlighting = { let mut h = HashMap::with_capacity(2); - h.insert("\n", "\u{21b5}\n\r"); + h.insert("\n", "\u{21b5}\r\n\n"); h.insert(" ", symbol::WHITESPACE); h };