From e9aa2e2ac395285a396d07daef431ff59e2c1c52 Mon Sep 17 00:00:00 2001 From: goaaats Date: Sat, 10 May 2025 13:23:32 +0200 Subject: [PATCH] Respect alpha when drawing installer loading overlay --- .../Internal/Windows/PluginInstaller/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index c1bd64447..db0109ee0 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -575,7 +575,7 @@ internal class PluginInstallerWindow : Window, IDisposable ImGui.GetWindowDrawList().AddRectFilled( ImGui.GetWindowPos() + new Vector2(0, titleHeight), ImGui.GetWindowPos() + windowSize, - 0xCC000000, + ImGui.ColorConvertFloat4ToU32(new(0f, 0f, 0f, 0.8f * ImGui.GetStyle().Alpha)), ImGui.GetStyle().WindowRounding, ImDrawFlags.RoundCornersBottom); ImGui.PopClipRect();