diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-01-06 08:32:44 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-01-06 08:32:44 -0500 |
commit | fcab1e87ed884777d91858a766f5330697977851 (patch) | |
tree | 9a763b5ef431b51851bdd94d23758d299a05fd2b | |
parent | 0ef2df21f2943c3985fcc86f5f6c3289036be491 (diff) |
fix data-device keyboard grab signature
-rw-r--r-- | types/wlr_data_device.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/types/wlr_data_device.c b/types/wlr_data_device.c index a4eb233b..3c48119a 100644 --- a/types/wlr_data_device.c +++ b/types/wlr_data_device.c @@ -594,7 +594,8 @@ static void keyboard_drag_key(struct wlr_seat_keyboard_grab *grab, // no keyboard input during drags } -static void keyboard_drag_modifiers(struct wlr_seat_keyboard_grab *grab) { +static void keyboard_drag_modifiers(struct wlr_seat_keyboard_grab *grab, + struct wlr_keyboard_modifiers *modifiers) { //struct wlr_keyboard *keyboard = grab->seat->keyboard_state.keyboard; // TODO change the dnd action based on what modifier is pressed on the // keyboard |