From 6784678ff0aca040491fa8a374ab46b36768a9d2 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Mon, 1 Jul 2024 23:53:14 +0200 Subject: [PATCH] impr: Disable tab overlines --- main/gui/source/window/window.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/gui/source/window/window.cpp b/main/gui/source/window/window.cpp index f15247291..187db405e 100644 --- a/main/gui/source/window/window.cpp +++ b/main/gui/source/window/window.cpp @@ -974,6 +974,9 @@ namespace hex { style.IndentSpacing = 10.0F; style.DisplaySafeAreaPadding = ImVec2(0.0F, 0.0F); + style.Colors[ImGuiCol_TabSelectedOverline] = ImVec4(0.0F, 0.0F, 0.0F, 0.0F); + style.Colors[ImGuiCol_TabDimmedSelectedOverline] = ImVec4(0.0F, 0.0F, 0.0F, 0.0F); + // Install custom settings handler { ImGuiSettingsHandler handler;