From 02e969018702aa46880e5412e0973232e9f40209 Mon Sep 17 00:00:00 2001 From: jtuu Date: Thu, 21 Nov 2019 22:12:08 +0200 Subject: [PATCH] Fixed a bug where Menu items that had a defined falsy value could not be selected. --- src/core/gui/Menu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gui/Menu.ts b/src/core/gui/Menu.ts index c98a37cc..865e59ef 100644 --- a/src/core/gui/Menu.ts +++ b/src/core/gui/Menu.ts @@ -169,7 +169,7 @@ export class Menu extends Widget { private select_item(index: number): void { const item = this.items.val[index]; - if (!item) return; + if (item === undefined) return; this.selected.set_val(item, { silent: false }); this.visible.set_val(false, { silent: false });