Skip to content

Commit

Permalink
Issues in Content Tree Grid (non-slickgrid classes) #7770
Browse files Browse the repository at this point in the history
Misc changes for the new tree- and -list api #3696
  • Loading branch information
ashklianko committed Sep 12, 2024
1 parent 4b96802 commit 01559d2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ export class FilterableListBoxWrapper<I>
}

protected handlerEnterPressed(): void {
debugger;
if (this.applyButton.hasFocus()) {
this.applySelection();
return;
Expand All @@ -246,7 +247,9 @@ export class FilterableListBoxWrapper<I>
this.handleUserToggleAction(focusedItem);
}

this.applySelection();
if (this.selectionDelta.size !== 0) {
this.applySelection();
}
}
}

Expand Down

0 comments on commit 01559d2

Please sign in to comment.