qml: Size-down the default window to 730 width.

Back-calculated from 1280/1.75, this should just about fit on a 1280x720
format display at 1.75x scaling.
This commit is contained in:
Tom Dewey tom.dewey@raspberrypi.com 2023-10-10 12:27:44 +01:00
parent be8956a87e
commit 758853e8a8

View file

@ -14,9 +14,9 @@ ApplicationWindow {
id: window
visible: true
width: imageWriter.isEmbeddedMode() ? -1 : 800
width: imageWriter.isEmbeddedMode() ? -1 : 730
height: imageWriter.isEmbeddedMode() ? -1 : 450
minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 800
minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 730
minimumHeight: imageWriter.isEmbeddedMode() ? -1 : 420
title: qsTr("Raspberry Pi Imager v%1").arg(imageWriter.constantVersion())