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