Add info boxes contents

This commit is contained in:
2025-12-15 02:12:01 +08:00
parent 979afc27e3
commit e76f12527f
20 changed files with 307 additions and 149 deletions

View File

@@ -15,8 +15,8 @@ impl AddFolderPopup {
let mut textarea = TextArea::new(
"Folder Path",
"",
|x| {
let path = Path::new(x);
|v| {
let path = Path::new(v);
path.exists() && path.is_dir()
}
);