From c38330e5004d66d4e4cc98078d52680c2f2e3499 Mon Sep 17 00:00:00 2001 From: luboslenco Date: Tue, 13 Dec 2022 13:14:32 +0100 Subject: [PATCH] Disable ui while combo is selected --- Sources/arm/App.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/arm/App.hx b/Sources/arm/App.hx index 9a73e029..996e84fc 100644 --- a/Sources/arm/App.hx +++ b/Sources/arm/App.hx @@ -621,7 +621,7 @@ class App { } var usingMenu = UIMenu.show && mouse.y > UIHeader.inst.headerh; - uiEnabled = !UIBox.show && !usingMenu; + uiEnabled = !UIBox.show && !usingMenu && !isComboSelected(); if (UIBox.show) UIBox.render(g); if (UIMenu.show) UIMenu.render(g);