Fix stuff

This commit is contained in:
Fabian Stamm 2025-03-31 09:29:21 +02:00
parent 9e763a91ef
commit a9bf713dd5
2 changed files with 4 additions and 2 deletions

View File

@ -110,9 +110,10 @@ impl ACLEditor {
ui.horizontal(|ui| {
if ui.button("Save").clicked() {
// TODO: Save ACLs
let path = self.path.clone();
let acl = self.acl.clone();
let mut acl = self.acl.clone();
acl.set(ACLEntry(Qualifier::Mask, PermSet::all())); // Make sure mask is set!
self.save_thread_error = None;
self.save_thread = Some(std::thread::spawn(move || {
crate::helper::acl_writer::write_acl_recursive(path, acl)

View File

@ -87,6 +87,7 @@ impl Folder {
.unwrap_or_else(|err| {
eprintln!("Failed to read dir: {}", err);
});
children_data.sort_by_key(|folder| folder.name.clone());
children.replace(children_data);
}