fix: make scrollbar bg transparent globally

This commit is contained in:
goat 2021-08-09 23:15:10 +02:00
parent f0fe84230c
commit ec97f06121
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -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;