42e120f87d
Add accessibility/onboard On-screen Keyboard with macros, easy layout creation and word suggestion. This on-screen keyboard can be useful for tablet PC users, as well as for mobility impaired users. Apply patch from Yusuf Yaman <nxjoseph@freebsd.org>: I have encountered a problem when trying to launch onboard-settings from the app itself and it had been solved by the diff below: Pet portlint and portclippy (truckman) PR: 291496
12 lines
459 B
Python
12 lines
459 B
Python
--- Onboard/HardwareSensorTracker.py.orig 2025-07-03 16:13:44 UTC
|
|
+++ Onboard/HardwareSensorTracker.py
|
|
@@ -259,7 +259,7 @@ class AcpidListener:
|
|
elif self._exit_r in rl:
|
|
break
|
|
|
|
- for event in data.decode("UTF-8").splitlines():
|
|
+ for event in data.decode("UTF-8", errors='replace').splitlines():
|
|
|
|
_logger.info("AcpidListener: ACPI event: '{}'"
|
|
.format(event))
|