From af8012a5493ea1b0520b549f10b749718e15fb43 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 29 May 2024 13:21:40 +1000 Subject: [PATCH] hwdb: don't mark a Mouse device as tablet or pad Same what we already do for a "foo Keyboard" device let's also not mark a "foo Mouse" device as a tablet or tablet pad. --- tools/libwacom-update-db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libwacom-update-db.py b/tools/libwacom-update-db.py index a25d1abe..f9317de4 100755 --- a/tools/libwacom-update-db.py +++ b/tools/libwacom-update-db.py @@ -86,6 +86,7 @@ def _tablet_entry(self, tablet): # Keyboard device name. if int(vid, 16) != 0x56A: entries["* Keyboard"] = ["ID_INPUT_TABLET=0", "ID_INPUT_TABLET_PAD=0"] + entries["* Mouse"] = ["ID_INPUT_TABLET=0", "ID_INPUT_TABLET_PAD=0"] lines = [f"# {tablet.name}"] for name, props in entries.items():