From f9cd6c9b5f3863628a98b3102be9a6ca11d811de Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Sat, 18 Feb 2023 01:16:16 +0600 Subject: [PATCH] Set default tablet tool to Pen --- src/device/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/mouse.c b/src/device/mouse.c index 12531e3ce..93384e063 100644 --- a/src/device/mouse.c +++ b/src/device/mouse.c @@ -40,7 +40,7 @@ int mouse_x, mouse_buttons, mouse_mode, mouse_tablet_in_proximity = 0, - tablet_tool_type = 0; /* 0 = Puck/Cursor, 1 = Pen */ + tablet_tool_type = 1; /* 0 = Puck/Cursor, 1 = Pen */ double mouse_x_abs, mouse_y_abs;