This commit is contained in:
cmclark00 2024-10-12 00:29:39 -04:00
parent b278229302
commit 4aa35bc642
2 changed files with 16 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 75 KiB

Before After
Before After

View file

@ -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
}
}
}