diff options
-rw-r--r-- | qml/mw-ui.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 7383b41..6ef46f0 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -10,7 +10,7 @@ import Qt.labs.settings 1.0 Rectangle { id: box - width: 1000; height: 700 + width: 1000 * Screen.devicePixelRatio; height: 700 * Screen.devicePixelRatio property alias view: view //: For Right to Left language, set this string to RTL @@ -879,7 +879,7 @@ Rectangle { anchors.rightMargin: 0 anchors.leftMargin: 0 anchors.topMargin: 0 - anchors { fill: parent; bottomMargin: 30 } + anchors { fill: parent; bottomMargin: startCB.implicitHeight +10 } model: itemModel preferredHighlightBegin: 0; preferredHighlightEnd: 0 highlightRangeMode: ListView.StrictlyEnforceRange @@ -935,6 +935,7 @@ Rectangle { anchors.bottom: box.bottom anchors.margins: 6 CheckBox { + id:startCB text: qsTr("Show this window at startup") checked: startupcheck onClicked: norun.setRunAtLaunch(checked) |