Fix regression

This commit is contained in:
Ravi R Kiran 2021-03-31 08:54:10 -05:00
parent fdfba4ea04
commit b074533b29

1
glfw/ibus_glfw.c vendored
View File

@ -388,6 +388,7 @@ ibus_key_state(unsigned int glfw_modifiers, int action) {
M(CONTROL, IBUS_CONTROL_MASK); M(CONTROL, IBUS_CONTROL_MASK);
M(ALT, IBUS_MOD1_MASK); M(ALT, IBUS_MOD1_MASK);
M(NUM_LOCK, IBUS_MOD2_MASK); M(NUM_LOCK, IBUS_MOD2_MASK);
M(SUPER, IBUS_MOD4_MASK);
/* To do: figure out how to get super/hyper/meta */ /* To do: figure out how to get super/hyper/meta */
#undef M #undef M
return ans; return ans;