From 023fafe54fa1a4587843dc550fba79389dc7f149 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Wed, 25 Dec 2024 11:35:39 -0800 Subject: [PATCH] Remove some OSK debugging printf()s I forgot about --- src/onscreen_keyboard.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/onscreen_keyboard.c b/src/onscreen_keyboard.c index 81cb79e74..457e38613 100644 --- a/src/onscreen_keyboard.c +++ b/src/onscreen_keyboard.c @@ -1479,7 +1479,6 @@ static osk_key *find_key(on_screen_keyboard *keyboard, int x, int y) keyboard->layout->keys[j][i].x + keyboard->layout->keys[j][i].width * keyboard->button_up->w > x) { key = &keyboard->layout->keys[j][i]; -printf("find_key() -> key.keycode = %d\n", key->keycode); return key; } } @@ -1601,8 +1600,6 @@ static char *find_keysym(osk_key key, on_screen_keyboard *keyboard) keysym = keysyms.caps; } -printf("find_keysym() -> keysym = %s\n", keysym); // XF86Paste - return (keysym); }