From af17e33e008e948e25e3df5dbe0931d0c1cf8908 Mon Sep 17 00:00:00 2001 From: Michael Webster Date: Thu, 5 Dec 2019 10:19:28 -0500 Subject: theme.c: Fix window control hidpi rendering for all themes. By scaling the pixbuf when loading, existing assets can be used. --- src/ui/theme.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/ui/theme.c b/src/ui/theme.c index e15cf2ec..6c9636ec 100644 --- a/src/ui/theme.c +++ b/src/ui/theme.c @@ -4134,8 +4134,8 @@ meta_draw_op_draw_with_env (const MetaDrawOp *op, if (op->data.image.pixbuf) { - env->object_width = gdk_pixbuf_get_width (op->data.image.pixbuf); - env->object_height = gdk_pixbuf_get_height (op->data.image.pixbuf); + env->object_width = gdk_pixbuf_get_width (op->data.image.pixbuf) / scale; + env->object_height = gdk_pixbuf_get_height (op->data.image.pixbuf) / scale; } rwidth = parse_size_unchecked (op->data.image.width, env) * scale; @@ -5672,7 +5672,19 @@ meta_theme_load_image (MetaTheme *theme, char *full_path; full_path = g_build_filename (theme->dirname, filename, NULL); - pixbuf = gdk_pixbuf_new_from_file (full_path, error); + gint width, height; + + if (gdk_pixbuf_get_file_info (full_path, &width, &height) == NULL) + { + g_free (full_path); + return NULL; + } + + width *= scale; + height *= scale; + + pixbuf = gdk_pixbuf_new_from_file_at_size (full_path, width, height, error); + if (pixbuf == NULL) { g_free (full_path); -- cgit v1.2.1