aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/wl_shell.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-04-07 11:53:10 -0400
committerLibravatar GitHub <noreply@github.com>2018-04-07 11:53:10 -0400
commitc47b4d4edb7714612ec7236fafda5ca54cb92ce4 (patch)
tree9a7f991e9c3da20351b58c53e0b6dbe376f12dca /sway/desktop/wl_shell.c
parentMerge pull request #1700 from swaywm/move-cmd-full (diff)
parentDamage all surfaces when damaging whole container (diff)
downloadsway-c47b4d4edb7714612ec7236fafda5ca54cb92ce4.tar.gz
sway-c47b4d4edb7714612ec7236fafda5ca54cb92ce4.tar.zst
sway-c47b4d4edb7714612ec7236fafda5ca54cb92ce4.zip
Merge pull request #1756 from emersion/output-damage
Fine-grained damage tracking
Diffstat (limited to 'sway/desktop/wl_shell.c')
-rw-r--r--sway/desktop/wl_shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/wl_shell.c b/sway/desktop/wl_shell.c
index fff31da8..b63c220c 100644
--- a/sway/desktop/wl_shell.c
+++ b/sway/desktop/wl_shell.c
@@ -79,7 +79,7 @@ static void handle_commit(struct wl_listener *listener, void *data) {
79 // TODO: Let floating views do whatever 79 // TODO: Let floating views do whatever
80 view_update_size(view, wl_shell_view->pending_width, 80 view_update_size(view, wl_shell_view->pending_width,
81 wl_shell_view->pending_height); 81 wl_shell_view->pending_height);
82 view_damage_from(view); 82 view_damage(view, false);
83} 83}
84 84
85static void handle_destroy(struct wl_listener *listener, void *data) { 85static void handle_destroy(struct wl_listener *listener, void *data) {