1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-10-09 15:47:26 -04:00

setnextwindowpos fix

This commit is contained in:
Evan Pezent 2020-08-26 10:33:31 -05:00
parent 13c8f97215
commit fc3658e420

View File

@ -145,8 +145,8 @@ void ShowDemoWindow(bool* p_open) {
ImGui::End(); ImGui::End();
} }
if (show_implot_benchmark) { if (show_implot_benchmark) {
ImGui::SetNextWindowSize(ImVec2(530,740), ImGuiCond_Appearing);
ImGui::Begin("ImPlot Benchmark Tool", &show_implot_benchmark); ImGui::Begin("ImPlot Benchmark Tool", &show_implot_benchmark);
ImGui::SetNextWindowSize(ImVec2(530,690), ImGuiCond_Appearing);
ImPlot::ShowBenchmarkTool(); ImPlot::ShowBenchmarkTool();
ImGui::End(); ImGui::End();
return; return;