1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-12 10:11:00 +01:00

ShowTestWindow(): added a custom label in the format for one of the slider example.

This commit is contained in:
ocornut 2015-04-18 17:35:40 +01:00
parent c46d5634d4
commit acbd58627f

View File

@ -9921,9 +9921,9 @@ void ImGui::ShowTestWindow(bool* opened)
ImGui::SliderInt("slider int 0..3", &i1, 0, 3);
ImGui::SliderInt("slider int -100..100", &i2, -100, 100);
static float f1=1.123f;
static float f2=0;
ImGui::SliderFloat("slider float", &f1, 0.0f, 2.0f);
static float f1=0.123f;
static float f2=0.0f;
ImGui::SliderFloat("slider float", &f1, 0.0f, 1.0f, "ratio = %.3f");
ImGui::SliderFloat("slider log float", &f2, -10.0f, 10.0f, "%.4f", 3.0f);
static float angle = 0.0f;
ImGui::SliderAngle("slider angle", &angle);