From a72dc92411ee8a8f9bdc4d75058d9131b445cf59 Mon Sep 17 00:00:00 2001 From: goat Date: Mon, 20 Jan 2025 22:11:17 +0100 Subject: [PATCH] make window config dirty when disabling clickthrough with title bar button --- Dalamud/Interface/Windowing/Window.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Dalamud/Interface/Windowing/Window.cs b/Dalamud/Interface/Windowing/Window.cs index 79bb63685..eaa3561f5 100644 --- a/Dalamud/Interface/Windowing/Window.cs +++ b/Dalamud/Interface/Windowing/Window.cs @@ -498,6 +498,7 @@ public abstract class Window Click = _ => { this.internalIsClickthrough = false; + this.presetDirty = false; ImGui.OpenPopup(additionsPopupName); }, Priority = int.MinValue,