aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell_v6.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-05-10 18:46:14 -0400
committerLibravatar GitHub <noreply@github.com>2018-05-10 18:46:14 -0400
commitfbddd34b47fd774631d2a5495e4b0b69acb34688 (patch)
tree7b74a17124cb1d8a0adf777b9cb337574bea52a7 /sway/desktop/xdg_shell_v6.c
parentMerge pull request #1932 from emersion/fix-layer-shell-exclusive (diff)
parentFix damage tracking on HiDPI (diff)
downloadsway-fbddd34b47fd774631d2a5495e4b0b69acb34688.tar.gz
sway-fbddd34b47fd774631d2a5495e4b0b69acb34688.tar.zst
sway-fbddd34b47fd774631d2a5495e4b0b69acb34688.zip
Merge pull request #1923 from emersion/full-damage-tracking
Implement full damage tracking
Diffstat (limited to 'sway/desktop/xdg_shell_v6.c')
-rw-r--r--sway/desktop/xdg_shell_v6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index fcee8ce9..8ecb330d 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -177,7 +177,7 @@ static void handle_commit(struct wl_listener *listener, void *data) {
177 view_update_size(view, xdg_shell_v6_view->pending_width, 177 view_update_size(view, xdg_shell_v6_view->pending_width,
178 xdg_shell_v6_view->pending_height); 178 xdg_shell_v6_view->pending_height);
179 view_update_title(view, false); 179 view_update_title(view, false);
180 view_damage(view, false); 180 view_damage_from(view);
181} 181}
182 182
183static void handle_new_popup(struct wl_listener *listener, void *data) { 183static void handle_new_popup(struct wl_listener *listener, void *data) {