From 51940a61049190f873aadefaff37b3acfab1b2e5 Mon Sep 17 00:00:00 2001 From: cmclark00 Date: Fri, 11 Oct 2024 23:51:11 -0400 Subject: [PATCH] logo work --- src/main.qml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main.qml b/src/main.qml index a3b97ad..215b53d 100644 --- a/src/main.qml +++ b/src/main.qml @@ -72,8 +72,15 @@ ApplicationWindow { anchors.fill: parent smooth: true antialiasing: true - + fillMode: Image.PreserveAspectFit + // Set a placeholder color to help in debugging + Rectangle { + anchors.fill: parent + color: "#ff0000" // Red to make it stand out + visible: source === "" // Show if the image source is missing or empty + } } + } Rectangle {