mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Merge pull request #1529 from emersion/better-dnd-fix
data-device: destroy previous source when starting drag
This commit is contained in:
		
						commit
						20d404a091
					
				
					 2 changed files with 4 additions and 9 deletions
				
			
		| 
						 | 
					@ -487,12 +487,12 @@ bool seat_client_start_drag(struct wlr_seat_client *client,
 | 
				
			||||||
		drag_set_focus(drag, point->surface, point->sx, point->sy);
 | 
							drag_set_focus(drag, point->surface, point->sx, point->sy);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	seat->drag = drag; // TODO: unset this thing somewhere
 | 
						seat->drag = drag;
 | 
				
			||||||
	seat->drag_serial = serial;
 | 
						seat->drag_serial = serial;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (seat->drag_source != NULL) {
 | 
						// We need to destroy the previous source, because listeners only expect one
 | 
				
			||||||
		wl_list_remove(&seat->drag_source_destroy.link);
 | 
						// active drag source at a time.
 | 
				
			||||||
	}
 | 
						wlr_data_source_destroy(seat->drag_source);
 | 
				
			||||||
	seat->drag_source = source;
 | 
						seat->drag_source = source;
 | 
				
			||||||
	if (source != NULL) {
 | 
						if (source != NULL) {
 | 
				
			||||||
		seat->drag_source_destroy.notify = seat_handle_drag_source_destroy;
 | 
							seat->drag_source_destroy.notify = seat_handle_drag_source_destroy;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -315,8 +315,6 @@ static void seat_handle_drag_source_destroy(struct wl_listener *listener,
 | 
				
			||||||
		wl_container_of(listener, xwm, seat_drag_source_destroy);
 | 
							wl_container_of(listener, xwm, seat_drag_source_destroy);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	wl_list_remove(&xwm->seat_drag_source_destroy.link);
 | 
						wl_list_remove(&xwm->seat_drag_source_destroy.link);
 | 
				
			||||||
	xwm->seat_drag_source_destroy.link.prev = NULL;
 | 
					 | 
				
			||||||
	xwm->seat_drag_source_destroy.link.next = NULL;
 | 
					 | 
				
			||||||
	xwm->drag_focus = NULL;
 | 
						xwm->drag_focus = NULL;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -334,9 +332,6 @@ void xwm_seat_handle_start_drag(struct wlr_xwm *xwm, struct wlr_drag *drag) {
 | 
				
			||||||
		wl_signal_add(&drag->events.destroy, &xwm->seat_drag_destroy);
 | 
							wl_signal_add(&drag->events.destroy, &xwm->seat_drag_destroy);
 | 
				
			||||||
		xwm->seat_drag_destroy.notify = seat_handle_drag_destroy;
 | 
							xwm->seat_drag_destroy.notify = seat_handle_drag_destroy;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		if (xwm->seat_drag_source_destroy.link.prev != NULL) {
 | 
					 | 
				
			||||||
			wl_list_remove(&xwm->seat_drag_source_destroy.link);
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		wl_signal_add(&drag->source->events.destroy,
 | 
							wl_signal_add(&drag->source->events.destroy,
 | 
				
			||||||
			&xwm->seat_drag_source_destroy);
 | 
								&xwm->seat_drag_source_destroy);
 | 
				
			||||||
		xwm->seat_drag_source_destroy.notify = seat_handle_drag_source_destroy;
 | 
							xwm->seat_drag_source_destroy.notify = seat_handle_drag_source_destroy;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue