From 1d11e12dd0f6c132c20721151ae9f6acfad13045 Mon Sep 17 00:00:00 2001 From: Miso Date: Thu, 16 Apr 2026 15:08:22 -0600 Subject: [PATCH] fix: reposition popup panel after dock side change --- scripts/main.gd | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/main.gd b/scripts/main.gd index e0ff1a3..e5f7ddf 100644 --- a/scripts/main.gd +++ b/scripts/main.gd @@ -517,6 +517,12 @@ func _on_dock_side_selected(index: int) -> void: settings["dock_anchor"] = dock_anchor_from_option(index) save_settings() apply_dock_position() + if menu_was_open: + sidebar_scroll.visible = true + menu_actions.visible = true + management_panels.visible = true + position_popup_panel(settings.get("dock_anchor", "right")) + update_menu_button_text() if previous_family != anchor_family: build_world() bootstrap_state()