diff options
author | Drew DeVault <[email protected]> | 2015-11-14 17:14:23 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-11-14 17:14:23 -0500 |
commit | cd161aa98532a29129547cf05b778a6dfe915821 (patch) | |
tree | 2df9dac8d8dd50246646cbe2cee3ca143c01f080 /sway/handlers.c | |
parent | 95442dac8d5c518fe2dc1f1191ecbf7beaac78ac (diff) |
We somewhat more wlc_point now
Apparently I missed some
cc @Cloudef
Diffstat (limited to 'sway/handlers.c')
-rw-r--r-- | sway/handlers.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index 510b4261..cadfce5c 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -295,8 +295,8 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier return EVENT_PASSTHROUGH; } -static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct wlc_origin *origin) { - struct wlc_origin new_origin = *origin; +static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct wlc_point *origin) { + struct wlc_point new_origin = *origin; // Switch to adjacent output if touching output edge. // // Since this doesn't currently support moving windows between outputs we @@ -338,7 +338,7 @@ static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers, - uint32_t button, enum wlc_button_state state, const struct wlc_origin *origin) { + uint32_t button, enum wlc_button_state state, const struct wlc_point *origin) { // Update view pointer is on pointer_state.view = container_under_pointer(); |