diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2021-12-16 11:48:43 -0600 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2021-12-16 11:48:43 -0600 |
commit | 852fe819c4a0e516135d1bfdd91de3cf60cb495d (patch) | |
tree | d352b4c2d183914887a3fba3896c2e4a9f8d5233 | |
parent | 40e45a336a2cef9fe76a5144f7da6ffa54110081 (diff) | |
parent | d3efb0b29bda112e61ce0cf81bb596aca97e0ee6 (diff) |
Merge branch 'wlroots-next' of github:djpohly/dwl into wlroots-next
-rw-r--r-- | dwl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -930,13 +930,13 @@ createlayersurface(struct wl_listener *listener, void *data) wlr_layer_surface->data = layersurface; m = wlr_layer_surface->output->data; - wl_list_insert(&m->layers[wlr_layer_surface->client_pending.layer], + wl_list_insert(&m->layers[wlr_layer_surface->pending.layer], &layersurface->link); - // Temporarily set the layer's current state to client_pending + // Temporarily set the layer's current state to pending // so that we can easily arrange it old_state = wlr_layer_surface->current; - wlr_layer_surface->current = wlr_layer_surface->client_pending; + wlr_layer_surface->current = wlr_layer_surface->pending; arrangelayers(m); wlr_layer_surface->current = old_state; } |