diff options
| author | Drew DeVault <sir@cmpwn.com> | 2017-11-19 10:34:00 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-19 10:34:00 -0500 | 
| commit | 9a4b40854be4bdafe91f1decbae8d8ce8e9df31a (patch) | |
| tree | bbc2650f3bbdf6aefa697d1c983a1288a517f924 /rootston/output.c | |
| parent | 358654e212dbb3423948e89d26a0da218ad49252 (diff) | |
| parent | bd8cdf1e9ff0ba6a0e8f7c36fec7f7540c94fded (diff) | |
| download | wlroots-9a4b40854be4bdafe91f1decbae8d8ce8e9df31a.tar.xz | |
Merge pull request #433 from acrisci/refactor/wlr-drag-icon
wlr- drag-icon
Diffstat (limited to 'rootston/output.c')
| -rw-r--r-- | rootston/output.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/output.c b/rootston/output.c index 6c8f2519..b551dcf4 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -191,10 +191,10 @@ static void output_frame_notify(struct wl_listener *listener, void *data) {  		render_view(view, desktop, wlr_output, &now);  	} -	struct roots_drag_icon *drag_icon = NULL; +	struct wlr_drag_icon *drag_icon = NULL;  	struct roots_seat *seat = NULL;  	wl_list_for_each(seat, &server->input->seats, link) { -		wl_list_for_each(drag_icon, &seat->drag_icons, link) { +		wl_list_for_each(drag_icon, &seat->seat->drag_icons, link) {  			if (!drag_icon->mapped) {  				continue;  			}  | 
