From 4eb131b3b103548c3be66daa1ea10357d1f12947 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Mon, 12 Jul 2021 00:05:56 +0200 Subject: [PATCH] Clip corners of the input-element-cone, which sometimes hid the save button resulting in unexpected click behaviour --- UI/Input/DirectionInput.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/Input/DirectionInput.ts b/UI/Input/DirectionInput.ts index 12689d5d4..93d932c66 100644 --- a/UI/Input/DirectionInput.ts +++ b/UI/Input/DirectionInput.ts @@ -66,6 +66,7 @@ export default class DirectionInput extends InputElement { }) this.RegisterTriggers(element) + element.style.overflow = "hidden" return element; }