From 096e6408525a78b7812f132c4214d6fdb5228509 Mon Sep 17 00:00:00 2001 From: cmclark00 Date: Sat, 12 Oct 2024 20:00:30 -0400 Subject: [PATCH] logo work --- src/main.qml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/src/main.qml b/src/main.qml index 162445c..f9546c6 100644 --- a/src/main.qml +++ b/src/main.qml @@ -69,19 +69,9 @@ ApplicationWindow { source: "icons/logo_sxs_imager.png" // Specify the maximum size of the image - width: window.width - height: window.height / 3 - - smooth: true - antialiasing: true - - anchors { - left: logoContainer.left - top: logoContainer.top - bottom: logoContainer.bottom - topMargin: window.height - bottomMargin: window.height - } + width: parent.width + height: parent.height + anchors.fill: parent } }