From ec97f06121b739e0f589d87c8e0367f66923318d Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Mon, 9 Aug 2021 23:15:10 +0200 Subject: [PATCH] fix: make scrollbar bg transparent globally --- Dalamud/Interface/Internal/InterfaceManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Dalamud/Interface/Internal/InterfaceManager.cs b/Dalamud/Interface/Internal/InterfaceManager.cs index 92ed70a67..825495dd1 100644 --- a/Dalamud/Interface/Internal/InterfaceManager.cs +++ b/Dalamud/Interface/Internal/InterfaceManager.cs @@ -366,6 +366,7 @@ namespace Dalamud.Interface.Internal ImGui.GetStyle().Colors[(int)ImGuiCol.Tab] = new Vector4(0.23f, 0.23f, 0.23f, 0.86f); ImGui.GetStyle().Colors[(int)ImGuiCol.TabHovered] = new Vector4(0.71f, 0.71f, 0.71f, 0.80f); ImGui.GetStyle().Colors[(int)ImGuiCol.TabActive] = new Vector4(0.36f, 0.36f, 0.36f, 1.00f); + ImGui.GetStyle().Colors[(int)ImGuiCol.ScrollbarBg] = Vector4.Zero; ImGui.GetIO().FontGlobalScale = this.dalamud.Configuration.GlobalUiScale;