From c755b510b12b0a2a119191f85d7fce52e80b83ef Mon Sep 17 00:00:00 2001 From: Bruno Date: Mon, 20 Jan 2025 12:59:30 -0300 Subject: [PATCH] images/logo: Reduce WizardSmallImageFile size again Following 9003b9eb This is optically needed because of a98245eb --- images/logo/gen-gimp-bmp.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/logo/gen-gimp-bmp.py.in b/images/logo/gen-gimp-bmp.py.in index 37f0ad7..f0edae7 100644 --- a/images/logo/gen-gimp-bmp.py.in +++ b/images/logo/gen-gimp-bmp.py.in @@ -6,7 +6,7 @@ def export_scaled_img(img_width, img_height, scale): procedure = Gimp.get_pdb().lookup_procedure("file-svg-load") config = procedure.create_config() config.set_property("file", Gio.file_new_for_path('@SRCDIR@/gimp-logo.svg')) - logo_dim = img_height * 0.75 + logo_dim = img_height * 0.71 config.set_property("width", logo_dim) config.set_property("height", logo_dim) Gimp.Procedure.run(procedure, config) -- GitLab