]> git.sur5r.net Git - i3/i3lock/commitdiff
Update the key symbol if the composing ends. 6/head
authorDaniel Otero <otero.o.daniel@gmail.com>
Thu, 12 Feb 2015 20:38:37 +0000 (21:38 +0100)
committerDaniel Otero <otero.o.daniel@gmail.com>
Thu, 12 Feb 2015 20:38:37 +0000 (21:38 +0100)
i3lock.c

index 16e791109d2e37676e15fa3080811df620ca1907..7f8218ef5d4b5ac586b48835a3eb3025f5afe804 100644 (file)
--- a/i3lock.c
+++ b/i3lock.c
@@ -334,7 +334,7 @@ static void handle_key_press(xcb_key_press_event_t *event) {
             /* xkb_compose_state_get_utf8 doesn't include the terminating byte in the return value
              * as xkb_keysym_to_utf8 does. Adding one makes the variable n consistent. */
             n = xkb_compose_state_get_utf8(xkb_compose_state, buffer, sizeof(buffer)) + 1;
-            //ksym = xkb_compose_state_get_one_sym(xkb_compose_state); // Not sure if it's needed
+            ksym = xkb_compose_state_get_one_sym(xkb_compose_state);
             composed = true;
             break;
         case XKB_COMPOSE_CANCELLED: