Project: Support relative pathes #23

Merged
cody merged 5 commits from topic/jb/project-files_rel-path into main 2025-04-05 19:59:19 +00:00
1 changed files with 4 additions and 6 deletions
Showing only changes of commit 5f93549a05 - Show all commits

View File

@ -45,9 +45,7 @@ component ProjectWidget inherits Rectangle {
alignment: start;
CheckBox {
text: "Append elements from project to existing elements";
toggled() => {
root.append_project_elements = self.checked;
}
checked <=> root.append_project_elements;
}
}
HorizontalLayout {
@ -84,7 +82,7 @@ component ProjectWidget inherits Rectangle {
}
CheckBox {
text: "Use relative path for files";
checked: root.use_rel_paths;
checked <=> root.use_rel_paths;
}
HorizontalLayout {
alignment: start;