Skip to content

Commit

Permalink
Remove ugly green color from bindings text
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Dec 14, 2023
1 parent 0ad0038 commit 65f643c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Framework.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1179,10 +1179,10 @@ void Framework::draw_ui() {
ImGui::NextColumn();

ImGui::BeginGroup();
ImGui::TextColored(ImVec4(0.0f, 1.0f, 0.0f, 1.0f), "Keyboard Menu Key: Insert");
ImGui::TextColored(ImVec4(0.0f, 1.0f, 0.0f, 1.0f), "Gamepad L3 + R3: Toggle Menu");
ImGui::TextColored(ImVec4(0.0f, 1.0f, 0.0f, 1.0f), "Gamepad RT: Shortcuts");
ImGui::TextColored(ImVec4(0.0f, 1.0f, 0.0f, 1.0f), "Gamepad LB/RB: Change Sidebar Page");
ImGui::Text("Keyboard Menu Key: Insert");
ImGui::Text("Gamepad L3 + R3: Toggle Menu");
ImGui::Text("Gamepad RT: Shortcuts");
ImGui::Text("Gamepad LB/RB: Change Sidebar Page");

ImGui::EndGroup();
ImGui::EndGroup();
Expand Down

0 comments on commit 65f643c

Please sign in to comment.