From 35ce211ec3ba025b67b5b91ecf10c1b1b2294a43 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 11 Feb 2010 15:15:01 -0500 Subject: [PATCH] dont print warnings when reading keys which dont generate text --- obt/keyboard.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/obt/keyboard.c b/obt/keyboard.c index 5e21842..57208aa 100644 --- a/obt/keyboard.c +++ b/obt/keyboard.c @@ -331,6 +331,9 @@ gunichar obt_keyboard_keypress_to_unichar(ObtIC *ic, XEvent *ev) got_string = TRUE; } } + else if (status == XLookupKeySym) + /* this key doesn't have a text representation, it is a command + key of some sort */; else g_message("Bad keycode lookup. Keysym 0x%x Status: %s\n", (guint) sym, -- 1.9.1