diff --git a/plugins/ui/source/ui/pattern_drawer.cpp b/plugins/ui/source/ui/pattern_drawer.cpp index 4045cc1ca..3c5ac1215 100644 --- a/plugins/ui/source/ui/pattern_drawer.cpp +++ b/plugins/ui/source/ui/pattern_drawer.cpp @@ -1247,6 +1247,8 @@ namespace hex::ui { } if (beginPatternTable(patterns, m_sortedPatterns, height)) { + ImGui::PushStyleColor(ImGuiCol_HeaderHovered, ImGui::GetColorU32(ImGuiCol_HeaderHovered, 0.4F)); + ImGui::PushStyleColor(ImGuiCol_HeaderActive, ImGui::GetColorU32(ImGuiCol_HeaderActive, 0.4F)); ImGui::TableHeadersRow(); m_showFavoriteStars = false; @@ -1317,6 +1319,8 @@ namespace hex::ui { } } + ImGui::PopStyleColor(2); + ImGui::EndTable(); }