Fix viewing duplicate items does not change item pane splitter state

This commit is contained in:
windingwind 2024-09-07 11:28:50 +02:00
parent 4c04dc583e
commit 58f5e188e3

View file

@ -566,6 +566,9 @@
case "duplicates": {
this._deck.selectedIndex = 3;
this.removeAttribute("collapsed");
if (this.previousElementSibling.localName === "splitter") {
this.previousElementSibling.setAttribute("state", "open");
}
break;
}
}