diff options
Diffstat (limited to 'example/rotation.c')
-rw-r--r-- | example/rotation.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example/rotation.c b/example/rotation.c index d7b6b169..412a81ca 100644 --- a/example/rotation.c +++ b/example/rotation.c @@ -123,6 +123,10 @@ static void handle_keyboard_key(struct keyboard_state *kbstate, update_velocities(kbstate->compositor, 0, 16); break; } + + if (sym >= XKB_KEY_F1 && sym <= XKB_KEY_F12) { + wlr_session_change_vt(kbstate->compositor->session, sym - XKB_KEY_F1 + 1); + } } } |