We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5e3a8 commit a66f696Copy full SHA for a66f696
src/main.qml
@@ -7,8 +7,8 @@ import ScratchCPP.UiComponents
7
import ScratchCPP.Render
8
9
Window {
10
- minimumWidth: layout.implicitWidth
11
- minimumHeight: layout.implicitHeight
+ minimumWidth: layout.implicitWidth + layout.anchors.margins * 2
+ minimumHeight: layout.implicitHeight + layout.anchors.margins * 2
12
visible: true
13
title: "ScratchCPP"
14
color: Material.background
@@ -18,10 +18,10 @@ Window {
18
ColumnLayout {
19
id: layout
20
anchors.fill: parent
21
+ anchors.margins: 10
22
23
RowLayout {
24
Layout.fillWidth: true
- Layout.topMargin: 10
25
26
CustomToolButton {
27
icon.name: "green_flag"
0 commit comments