You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(function () {
var f = window.gFolderTreeView;
for (var i = f.rowCount - 1; i >= 0; i--) {
if (f.isContainer(i) && f.isContainerOpen(i)) {
f.toggleOpenState(i);
}
}
})();
expand all tree nodes in folder pane
(function () {
var f = window.gFolderTreeView;
for (var i = 0; i < f.rowCount; i++) {
if (f.isContainer(i) && !f.isContainerOpen(i)) {
f.toggleOpenState(i);
}
}
})();
I'm trying to see if it's possible to configure a shortcut to collapse / expand all accounts. Any ideas how to achieve this?
Any help is appreciated
The text was updated successfully, but these errors were encountered: