From 55f6a8c6c2273a1562ad524ee8d299deabff4182 Mon Sep 17 00:00:00 2001 From: Juraj Bednar Date: Sun, 31 Dec 2023 21:54:39 +0100 Subject: [PATCH] Fix for predictive text Kivy's default for input boxes changed from "text" to "null" in Kivy 2.1.0. Not specifying it disallowed typing using predictive text keyboards such as Gboard or Swiftkey swiping, which was irritating, when you are typing text messages. --- sbapp/ui/messages.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbapp/ui/messages.py b/sbapp/ui/messages.py index 1cbfd56..026432d 100644 --- a/sbapp/ui/messages.py +++ b/sbapp/ui/messages.py @@ -711,6 +711,7 @@ MDScreen: MDTextField: id: message_text keyboard_suggestions: True + input_type: "text" multiline: True hint_text: "Write message" mode: "rectangle" @@ -767,4 +768,4 @@ Builder.load_string(""" IconLeftWidget: icon: root.icon -""") \ No newline at end of file +""")