File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ ProjectScene {
16
16
property alias cloneLimit: loader .cloneLimit
17
17
property alias spriteFencing: loader .spriteFencing
18
18
property alias mute: loader .mute
19
+ property alias hqPen: projectPenLayer .hqPen
19
20
property bool showLoadingProgress: true
20
21
readonly property bool loading: priv .loading
21
22
readonly property int downloadedAssets: loader .downloadedAssets
@@ -141,9 +142,9 @@ ProjectScene {
141
142
engine: loader .engine
142
143
anchors .top : parent .top
143
144
anchors .left : parent .left
144
- width: stageWidth
145
- height: stageHeight
146
- scale: stageScale
145
+ width: hqPen ? parent . width : stageWidth
146
+ height: hqPen ? parent . height : stageHeight
147
+ scale: hqPen ? 1 : stageScale
147
148
transformOrigin: Item .TopLeft
148
149
visible: ! priv .loading
149
150
}
You can’t perform that action at this time.
0 commit comments