From ef8696fd5bb2c6c4a7c34329fdc450eb2203e19c Mon Sep 17 00:00:00 2001 From: gruxor <95389790+gruxor@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:20:48 -0400 Subject: [PATCH] Update src/ui/move-info-overlay.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/ui/move-info-overlay.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/ui/move-info-overlay.ts b/src/ui/move-info-overlay.ts index 598e57ba209..131bede492a 100644 --- a/src/ui/move-info-overlay.ts +++ b/src/ui/move-info-overlay.ts @@ -15,9 +15,11 @@ export interface MoveInfoOverlaySettings { //location and width of the component; unaffected by scaling x?: number; y?: number; - width?: number; // default is always half the screen, regardless of scale - hideEffectBox?: boolean; // whether or not the small secondary box should be shown - hideBg?: boolean; // whether to hide the window background + /** Default is always half the screen, regardless of scale */ + width?: number; + /** Determines whether to display the small secondary box */ + hideEffectBox?: boolean; + hideBg?: boolean; } const EFF_HEIGHT = 48;