mirror of
https://github.com/gwm17/implot.git
synced 2025-04-22 08:18:50 -04:00
Fix trivial mistake in demo.
This commit is contained in:
parent
a70bbe5cff
commit
97c2f06eda
|
@ -663,7 +663,7 @@ void ShowDemoWindow(bool* p_open) {
|
||||||
paused = !paused;
|
paused = !paused;
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
for (int i = 0; i < K_CHANNELS; ++i) {
|
for (int i = 0; i < K_CHANNELS; ++i) {
|
||||||
char label[K_CHANNELS];
|
char label[8];
|
||||||
sprintf(label, show[i] ? "data_%d*" : "data_%d", i);
|
sprintf(label, show[i] ? "data_%d*" : "data_%d", i);
|
||||||
ImGui::Selectable(label, false, 0, ImVec2(100, 0));
|
ImGui::Selectable(label, false, 0, ImVec2(100, 0));
|
||||||
if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_None)) {
|
if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_None)) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user