TESTAPP: allow to open the bindings dialog

master
Martin Gerhardy 2021-09-25 14:14:28 +02:00
parent f31111ca5d
commit 91b7e755b7
1 changed files with 4 additions and 0 deletions

View File

@ -148,6 +148,10 @@ void TestApp::onRenderUI() {
}
ImGui::InputVarFloat("Rotation speed", _rotationSpeed, 0.01f, 0.1f);
ImGui::Separator();
ImGui::SameLine();
if (ImGui::Button("Bindings")) {
showBindingsDialog();
}
if (ImGui::Button("Quit")) {
requestQuit();
}