Fixed double declaration of style variable.

This commit is contained in:
Jonathas Costa
2017-10-18 21:46:20 -04:00
parent 6638fb52d0
commit 55d71af9a4
3 changed files with 1 additions and 3 deletions

View File

@@ -334,7 +334,6 @@ void GUI::initialize() {
style.GrabMinSize = 10.f;
style.GrabRounding = 16.f;
ImGuiStyle& style = ImGui::GetStyle();
style.Colors[ImGuiCol_Text] = ImVec4(0.90f, 0.90f, 0.90f, 1.00f);
style.Colors[ImGuiCol_TextDisabled] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f);
style.Colors[ImGuiCol_WindowBg] = ImVec4(0.13f, 0.13f, 0.13f, 0.96f);