diff --git a/src/icons/logo_sxs_imager.png b/src/icons/logo_sxs_imager.png index 250bfeb..e43664e 100644 Binary files a/src/icons/logo_sxs_imager.png and b/src/icons/logo_sxs_imager.png differ diff --git a/src/main.qml b/src/main.qml index bed3e16..30e6d22 100644 --- a/src/main.qml +++ b/src/main.qml @@ -62,13 +62,27 @@ ApplicationWindow { Rectangle { id: logoContainer - color: accentColor - implicitWidth: window.width implicitHeight: window.height/4 Image { id: image 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 + leftMargin: 40 + top: logoContainer.top + bottom: logoContainer.bottom + topMargin: window.height / 25 + bottomMargin: window.height / 25 + } } }