From acff2472eb06eafaeef88a8a2455066dd2e10e0c Mon Sep 17 00:00:00 2001
From: etti <98223724+ettiSurreal@users.noreply.github.com>
Date: Fri, 31 Jan 2025 00:58:47 +0100
Subject: [PATCH] Update the Godot logo
---
material_maker/icons/godot_logo.svg | 2 +-
material_maker/windows/about/about.gd | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/material_maker/icons/godot_logo.svg b/material_maker/icons/godot_logo.svg
index d7aef39cc..0550bec3c 100644
--- a/material_maker/icons/godot_logo.svg
+++ b/material_maker/icons/godot_logo.svg
@@ -1 +1 @@
-
+
\ No newline at end of file
diff --git a/material_maker/windows/about/about.gd b/material_maker/windows/about/about.gd
index d03b14f73..696c40f15 100644
--- a/material_maker/windows/about/about.gd
+++ b/material_maker/windows/about/about.gd
@@ -58,6 +58,7 @@ func _ready() -> void:
name_control = label
elif c.has("icon"):
var icon : TextureRect = TextureRect.new()
+ icon.expand_mode = TextureRect.EXPAND_FIT_HEIGHT_PROPORTIONAL
icon.stretch_mode = TextureRect.STRETCH_KEEP_ASPECT
icon.texture = load(c.icon)
name_control = icon