diff options
| author | ixru <anon@anon.com> | 2018-10-07 21:26:38 +0200 | 
|---|---|---|
| committer | ixru <anon@anon.com> | 2018-10-07 21:26:38 +0200 | 
| commit | 6a9995d18cfa5be560cd49b56ba6b751d19f3425 (patch) | |
| tree | 91ee9d92dc3eb16451dcd2ea104e8d1297e70ff0 | |
| parent | fb5572db5aff25e6e103fa9163d58d15d8857531 (diff) | |
| download | wlroots-6a9995d18cfa5be560cd49b56ba6b751d19f3425.tar.xz | |
Fix cursor visibility on surface commit
| -rw-r--r-- | types/wlr_output.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/types/wlr_output.c b/types/wlr_output.c index 35a3ab14..5f07d51a 100644 --- a/types/wlr_output.c +++ b/types/wlr_output.c @@ -874,6 +874,7 @@ static void output_cursor_handle_commit(struct wl_listener *listener,  	struct wlr_output_cursor *cursor =  		wl_container_of(listener, cursor, surface_commit);  	output_cursor_commit(cursor, true); +	output_cursor_update_visible(cursor);  }  static void output_cursor_handle_destroy(struct wl_listener *listener,  | 
