mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
Fix keyboard navigation in files table
This commit is contained in:
parent
81bbd1c5bd
commit
ce757e866b
1 changed files with 2 additions and 2 deletions
|
@ -2850,13 +2850,13 @@ window.qBittorrent.DynamicTable ??= (() => {
|
||||||
expandFolder(id) {
|
expandFolder(id) {
|
||||||
const node = this.getNode(id);
|
const node = this.getNode(id);
|
||||||
if (node.isFolder)
|
if (node.isFolder)
|
||||||
this.expandNode(node);
|
this.expandNode(node.rowId);
|
||||||
}
|
}
|
||||||
|
|
||||||
collapseFolder(id) {
|
collapseFolder(id) {
|
||||||
const node = this.getNode(id);
|
const node = this.getNode(id);
|
||||||
if (node.isFolder)
|
if (node.isFolder)
|
||||||
this.collapseNode(node);
|
this.collapseNode(node.rowId);
|
||||||
}
|
}
|
||||||
|
|
||||||
isAllCheckboxesChecked() {
|
isAllCheckboxesChecked() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue