Merge pull request #5421 from piotrbogun/5420/TreeList/scroll-on-overflow-navigation

TreeList: Fix widget treeList keyboard navigation scroll behavior
master
Nick O'Leary 2026-01-07 15:52:39 +00:00 committed by GitHub
commit 0738754d40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -188,7 +188,10 @@
} else {
that._topList.find(".focus").removeClass("focus")
}
target.treeList.label.addClass('focus')
if (target.treeList.label) {
target.treeList.label.addClass('focus')
}
that.reveal(target);
}
});
this._data = [];