From 0ff192906df6cb32af3b961475e0821d0a549836 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Mon, 16 Sep 2024 18:34:18 -0400 Subject: [PATCH] reposition window after it resizes, incase we are out of bounds --- flixel/system/debug/watch/Watch.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/flixel/system/debug/watch/Watch.hx b/flixel/system/debug/watch/Watch.hx index 66d16a793..f13090cf2 100644 --- a/flixel/system/debug/watch/Watch.hx +++ b/flixel/system/debug/watch/Watch.hx @@ -128,6 +128,7 @@ class Watch extends Window resetEntries(); minSize.setTo(getMaxMinWidth() + entriesContainerOffset.x, entriesContainer.height + entriesContainerOffset.y); super.updateSize(); + reposition(x, y); } function resetEntries():Void