Allow predictive text on Android by default, add option to block predictive text. Fixes #55.

This commit is contained in:
Mark Qvist 2024-09-23 00:03:13 +02:00
parent c2dcc55d6e
commit 919cd6a449
4 changed files with 32 additions and 13 deletions

View file

@ -531,6 +531,8 @@ class SidebandCore():
self.config["input_language"] = None
if not "allow_predictive_text" in self.config:
self.config["allow_predictive_text"] = False
if not "block_predictive_text" in self.config:
self.config["block_predictive_text"] = False
if not "connect_transport" in self.config:
self.config["connect_transport"] = False