render: remove 'refresh' from render_resize()

This commit is contained in:
Daniel Eklöf 2020-01-03 13:56:10 +01:00
parent 46c434d3f1
commit d07fd7de39
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 8 additions and 9 deletions

View file

@ -144,7 +144,7 @@ output_scale(void *data, struct wl_output *wl_output, int32_t factor)
struct terminal *term = it->item;
int scale = term->scale;
render_resize(term, term->width / scale, term->height / scale, true);
render_resize(term, term->width / scale, term->height / scale);
wayl_reload_cursor_theme(mon->wayl, term);
}
}
@ -371,7 +371,7 @@ surface_enter(void *data, struct wl_surface *wl_surface,
/* Resize, since scale-to-use may have changed */
int scale = term->scale;
render_resize(term, term->width / scale, term->height / scale, true);
render_resize(term, term->width / scale, term->height / scale);
wayl_reload_cursor_theme(term->wl, term);
return;
}
@ -396,7 +396,7 @@ surface_leave(void *data, struct wl_surface *wl_surface,
/* Resize, since scale-to-use may have changed */
int scale = term->scale;
render_resize(term, term->width / scale, term->height / scale, true);
render_resize(term, term->width / scale, term->height / scale);
wayl_reload_cursor_theme(term->wl, term);
return;
}
@ -510,7 +510,7 @@ xdg_surface_configure(void *data, struct xdg_surface *xdg_surface,
else
term_visual_focus_out(term);
render_resize(term, win->configure.width, win->configure.height, true);
render_resize(term, win->configure.width, win->configure.height);
}
static const struct xdg_surface_listener xdg_surface_listener = {