Switched to qmlformat.

This commit is contained in:
ItsLemmy
2025-11-16 17:07:03 -05:00
parent 32905224b9
commit 3ff5b7639f
223 changed files with 9970 additions and 9658 deletions
+5 -5
View File
@@ -27,14 +27,14 @@ Rectangle {
var dialog = Qt.createComponent("NColorPickerDialog.qml").createObject(root, {
"selectedColor": selectedColor,
"parent": Overlay.overlay
})
});
// Connect the dialog's signal to the picker's signal
dialog.colorSelected.connect(function (color) {
root.selectedColor = color
root.colorSelected(color)
})
root.selectedColor = color;
root.colorSelected(color);
});
dialog.open()
dialog.open();
}
RowLayout {