aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-26 13:15:45 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-26 13:15:45 +1000
commit7a922c65aab27c5f4282cf15de52d240e5ac8052 (patch)
treebea2a3dee07631b1da05428b29ec5d1e4c47d871 /include/sway/tree/view.h
parentRename progress_queue to transaction_progress_queue (diff)
downloadsway-7a922c65aab27c5f4282cf15de52d240e5ac8052.tar.gz
sway-7a922c65aab27c5f4282cf15de52d240e5ac8052.tar.zst
sway-7a922c65aab27c5f4282cf15de52d240e5ac8052.zip
Damage output when a fullscreen view unmaps
Also moved the arranging into view_unmap to avoid excessive code duplication.
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 5a615b43..0e6f5292 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -245,10 +245,7 @@ void view_destroy(struct sway_view *view);
245 245
246void view_map(struct sway_view *view, struct wlr_surface *wlr_surface); 246void view_map(struct sway_view *view, struct wlr_surface *wlr_surface);
247 247
248/** 248void view_unmap(struct sway_view *view);
249 * Unmap the view and return the surviving parent (after reaping).
250 */
251struct sway_container *view_unmap(struct sway_view *view);
252 249
253void view_update_position(struct sway_view *view, double lx, double ly); 250void view_update_position(struct sway_view *view, double lx, double ly);
254 251