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

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