mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
rofi: Fix NkBindings calls order
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
parent
087acb1028
commit
4c8e9247ad
2 changed files with 2 additions and 2 deletions
|
@ -1045,6 +1045,7 @@ int main ( int argc, char *argv[] )
|
|||
required_map_parts, /* map */
|
||||
&details );
|
||||
|
||||
xkb.bindings = nk_bindings_new ();
|
||||
xkb.bindings_seat = nk_bindings_seat_new ( xkb.bindings, XKB_CONTEXT_NO_FLAGS );
|
||||
struct xkb_keymap *keymap = xkb_x11_keymap_new_from_device ( nk_bindings_seat_get_context ( xkb.bindings_seat ), xcb->connection, xkb.device_id, XKB_KEYMAP_COMPILE_NO_FLAGS );
|
||||
if ( keymap == NULL ) {
|
||||
|
@ -1059,7 +1060,6 @@ int main ( int argc, char *argv[] )
|
|||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
xkb.bindings = nk_bindings_new ();
|
||||
nk_bindings_seat_update_keymap ( xkb.bindings_seat, keymap, state );
|
||||
|
||||
if ( xcb_connection_has_error ( xcb->connection ) ) {
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 4a7bb21f798f36ce6521ee07387297e812e6ad19
|
||||
Subproject commit 53314c0ab58d1a677d61017a413fd1d83b05ce3c
|
Loading…
Reference in a new issue