Mute selectable colors.

This commit is contained in:
Bartosz Taudul 2020-04-25 13:22:45 +02:00
parent 78a56640c3
commit c2d84fa288

View File

@ -291,6 +291,9 @@ int main( int argc, char** argv )
style.FrameBorderSize = 1.f * dpiScale;
style.FrameRounding = 5.f;
style.Colors[ImGuiCol_ScrollbarBg] = ImVec4( 1, 1, 1, 0.03f );
style.Colors[ImGuiCol_Header] = ImVec4(0.26f, 0.59f, 0.98f, 0.25f);
style.Colors[ImGuiCol_HeaderHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f);
style.Colors[ImGuiCol_HeaderActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.45f);
style.ScaleAllSizes( dpiScale );
glfwShowWindow( window );