Then either enter those folders that are not displayed at least once, or (that's what I'm doing) use a custom file association entry like:
Code: Select all
"Add folder(s) to minitree" \>::e|load "Add folder(s) to mini tree.xys";
Add folder(s) to mini tree.xys:
Code: Select all
// Add folder(s) to mini tree
if (<get CountSelected> == 0) { status "At least a single folder must be selected, aborted!", "8B4513", "stop"; end true; }
$paths = "";
foreach($item, <get SelectedItemsPathNames>, <crlf>, "e") {
if (exists($item) == 2) { $paths .= $item . <crlf>; }
}
if ($paths) { loadtree $paths, 1; }
or turn off the mini tree completely if you don't like its behaviour^^
@Don
No clue, sorry...
And maybe it would be a good idea to add an entry: Add folder to mini tree
in: Configuration | General | Menus, Mouse, Usability | Context Menus | File List...
?