Do not try to open/close empty collection tree rows on + and - hotkeys
Causes performance issues
This commit is contained in:
parent
b5dc0e7630
commit
d83ec19c23
1 changed files with 2 additions and 1 deletions
|
@ -999,6 +999,7 @@ var CollectionTree = class CollectionTree extends LibraryTree {
|
||||||
}
|
}
|
||||||
|
|
||||||
toggleOpenState = async (index) => {
|
toggleOpenState = async (index) => {
|
||||||
|
if (this.isContainerEmpty(index)) return;
|
||||||
if (this.isContainerOpen(index)) {
|
if (this.isContainerOpen(index)) {
|
||||||
return this._closeContainer(index);
|
return this._closeContainer(index);
|
||||||
}
|
}
|
||||||
|
@ -2030,7 +2031,7 @@ var CollectionTree = class CollectionTree extends LibraryTree {
|
||||||
}
|
}
|
||||||
|
|
||||||
_closeContainer(row, skipMap) {
|
_closeContainer(row, skipMap) {
|
||||||
if (!this.isContainerOpen(row)) return;
|
if (!this.isContainerOpen(row) || this.isContainerEmpty(row)) return;
|
||||||
|
|
||||||
this.selection.selectEventsSuppressed = true;
|
this.selection.selectEventsSuppressed = true;
|
||||||
let selectParent = this.getParentIndex(this.selection.focused);
|
let selectParent = this.getParentIndex(this.selection.focused);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue