Final changes before 'ready for review'

This commit is contained in:
Benoit de Chezelles 2019-10-16 02:47:14 +02:00
parent d8fc23c38f
commit 28525766a5
2 changed files with 1 additions and 2 deletions

1
glfw/xkb_glfw.c vendored
View File

@ -568,7 +568,6 @@ void
glfw_xkb_handle_key_event(_GLFWwindow *window, _GLFWXKBData *xkb, xkb_keycode_t xkb_keycode, int action) {
static char key_text[64] = {0};
const xkb_keysym_t *syms, *clean_syms, *default_syms;
// NOTE: there is no such thing as a `glfw_keycode`, => we could remove the `xkb_` prefix (?)
xkb_keysym_t xkb_sym;
xkb_keycode_t code_for_sym = xkb_keycode, ibus_keycode = xkb_keycode;
GLFWkeyevent glfw_ev;

View File

@ -127,7 +127,7 @@ on_key_input(GLFWkeyevent *ev) {
int action = ev->action, native_key = ev->native_key, key = ev->key, mods = ev->mods;
const char *text = ev->text ? ev->text : "";
debug("on_key_input: glfw key: %d native_key: 0x%x action: %s mods: 0x%x text: '%s' state: %d ",
debug("on_key_input: glfw key: %d native_code: 0x%x action: %s mods: 0x%x text: '%s' state: %d ",
key, native_key,
(action == GLFW_RELEASE ? "RELEASE" : (action == GLFW_PRESS ? "PRESS" : "REPEAT")),
mods, text, ev->ime_state);