aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop/wl_shell.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-04-07 11:53:10 -0400
committerGitHub <noreply@github.com>2018-04-07 11:53:10 -0400
commitc47b4d4edb7714612ec7236fafda5ca54cb92ce4 (patch)
tree9a7f991e9c3da20351b58c53e0b6dbe376f12dca /sway/desktop/wl_shell.c
parentf5a9bd5cb75b37376b98eadbff2facb7e0021d57 (diff)
parent0c627918bb1d4c056744157b8c37fb1f62c5ca8e (diff)
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) {
// TODO: Let floating views do whatever
view_update_size(view, wl_shell_view->pending_width,
wl_shell_view->pending_height);
- view_damage_from(view);
+ view_damage(view, false);
}
static void handle_destroy(struct wl_listener *listener, void *data) {