Skip to content

Commit b9d78bc

Browse files
committed
Add infinite clones option
1 parent 866d686 commit b9d78bc

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/app/qml/dialogs/ProjectSettingsDialog.qml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,17 @@ CustomDialog {
1111
title: qsTr("Project settings")
1212
standardButtons: Dialog.Close
1313

14-
contentItem: RowLayout {}
14+
contentItem: ColumnLayout {
15+
Label {
16+
text: qsTr("Remove limits")
17+
font.pointSize: 14
18+
font.bold: true
19+
}
20+
21+
CheckBox {
22+
text: qsTr("Infinite clones")
23+
checked: projectPlayer.cloneLimit === -1
24+
onCheckedChanged: projectPlayer.cloneLimit = checked ? -1 : 300
25+
}
26+
}
1527
}

0 commit comments

Comments
 (0)