Fixed wrong disabled color sheme

This commit is contained in:
Ryzerth 2021-06-23 22:24:58 +02:00
parent 26079dba0a
commit 64ed5058bf

View File

@ -29,8 +29,8 @@ namespace style {
auto& style = ImGui::GetStyle(); auto& style = ImGui::GetStyle();
ImVec4* colors = style.Colors; ImVec4* colors = style.Colors;
ImVec4 btnCol = colors[ImGuiCol_Button]; ImVec4 btnCol = colors[ImGuiCol_Button];
ImVec4 frameCol = colors[ImGuiCol_Button]; ImVec4 frameCol = colors[ImGuiCol_FrameBg];
ImVec4 textCol = colors[ImGuiCol_Button]; ImVec4 textCol = colors[ImGuiCol_Text];
btnCol.w = 0.15f; btnCol.w = 0.15f;
frameCol.w = 0.30f; frameCol.w = 0.30f;
textCol.w = 0.65f; textCol.w = 0.65f;