We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebeffd6 commit aa4a73aCopy full SHA for aa4a73a
1 file changed
src/gui/options/tabbox.ts
@@ -345,8 +345,8 @@ modmanager.gui.OptionsTabBox = ig.GuiElementBase.extend({
345
hideMenu() {
346
sc.menu.buttonInteract.removeParallelGroup(this.tabGroup)
347
348
- for (const content of this.tabContent) {
349
- for (const row of content.rows ?? []) row.hide()
+ for (const key in this.tabContent) {
+ for (const row of this.tabContent[key].rows ?? []) row.hide()
350
}
351
this.list.deactivate()
352
this.keyBinder.remove()
0 commit comments