1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-10-09 23:57:26 -04:00
This commit is contained in:
Evan Pezent 2020-06-04 09:57:02 -05:00
commit 4be885bf57

View File

@ -669,7 +669,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)) {
@ -937,4 +937,4 @@ void ShowDemoWindow(bool* p_open) {
ImGui::End(); ImGui::End();
} }
} // namespace ImPlot } // namespace ImPlot