@@ -70,22 +70,23 @@ static void move_seat(struct slurp_seat *seat, wl_fixed_t surface_x,
70
70
current_selection -> y = y ;
71
71
}
72
72
73
- static void seat_update_selection (struct slurp_seat * seat ) {
74
- seat -> pointer_selection .has_selection = false;
73
+ static void seat_update_selection (struct slurp_seat * seat ,
74
+ struct slurp_selection * current_selection ) {
75
+ current_selection -> has_selection = false;
75
76
76
77
// find smallest box intersecting the cursor
77
78
struct slurp_box * box ;
78
79
wl_list_for_each (box , & seat -> state -> boxes , link ) {
79
- if (in_box (box , seat -> pointer_selection . x ,
80
- seat -> pointer_selection . y )) {
81
- if (seat -> pointer_selection . has_selection &&
80
+ if (in_box (box , current_selection -> x ,
81
+ current_selection -> y )) {
82
+ if (current_selection -> has_selection &&
82
83
box_size (
83
- & seat -> pointer_selection . selection ) <
84
+ & current_selection -> selection ) <
84
85
box_size (box )) {
85
86
continue ;
86
87
}
87
- seat -> pointer_selection . selection = * box ;
88
- seat -> pointer_selection . has_selection = true;
88
+ current_selection -> selection = * box ;
89
+ current_selection -> has_selection = true;
89
90
}
90
91
}
91
92
}
@@ -147,7 +148,7 @@ static void pointer_handle_enter(void *data, struct wl_pointer *wl_pointer,
147
148
148
149
switch (seat -> button_state ) {
149
150
case WL_POINTER_BUTTON_STATE_RELEASED :
150
- seat_update_selection (seat );
151
+ seat_update_selection (seat , & seat -> pointer_selection );
151
152
break ;
152
153
case WL_POINTER_BUTTON_STATE_PRESSED :;
153
154
handle_active_selection_motion (seat , & seat -> pointer_selection );
@@ -194,7 +195,7 @@ static void pointer_handle_motion(void *data, struct wl_pointer *wl_pointer,
194
195
195
196
switch (seat -> button_state ) {
196
197
case WL_POINTER_BUTTON_STATE_RELEASED :
197
- seat_update_selection (seat );
198
+ seat_update_selection (seat , & seat -> pointer_selection );
198
199
break ;
199
200
case WL_POINTER_BUTTON_STATE_PRESSED :;
200
201
handle_active_selection_motion (seat , & seat -> pointer_selection );
@@ -388,6 +389,9 @@ static void touch_clear_state(struct slurp_seat *seat) {
388
389
static void touch_handle_up (void * data , struct wl_touch * touch , uint32_t serial ,
389
390
uint32_t time , int32_t id ) {
390
391
struct slurp_seat * seat = data ;
392
+ if (!seat -> touch_selection .has_selection ) {
393
+ seat_update_selection (seat , & seat -> touch_selection );
394
+ };
391
395
handle_selection_end (seat , & seat -> touch_selection );
392
396
touch_clear_state (seat );
393
397
}
0 commit comments