Fix: open correct menu if set in hash

This commit is contained in:
Pieter Vander Vennet 2023-08-09 14:42:38 +02:00
parent 03aafbe99c
commit 7a95334882

View file

@ -100,7 +100,7 @@ export default class ThemeViewStateHashActor {
private loadStateFromHash(hash: string) {
const state = this._state
const parts = hash.split(";")
const parts = hash.split(":")
outer: for (const { toggle, name, showOverOthers, submenu } of state.guistate.allToggles) {
for (const part of parts) {
if (part === name) {