From 1859d5f11310a032f21888e7282575968f602058 Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Sun, 1 Jun 2025 23:41:29 +0200 Subject: [PATCH] config: formatting to improve readability --- src/config/tablet.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/config/tablet.c b/src/config/tablet.c index ef8059d4..650385d2 100644 --- a/src/config/tablet.c +++ b/src/config/tablet.c @@ -103,7 +103,10 @@ void tablet_load_default_button_mappings(void) { rc.tablet.button_map_count = 0; - tablet_button_mapping_add(BTN_TOOL_PEN, BTN_LEFT); /* Used for the pen tip */ + + /* used for the pen tip */ + tablet_button_mapping_add(BTN_TOOL_PEN, BTN_LEFT); + tablet_button_mapping_add(BTN_STYLUS, BTN_RIGHT); tablet_button_mapping_add(BTN_STYLUS2, BTN_MIDDLE); } -- 2.52.0