From 8c52de32dea81a6dee1c7054230849dc6b6bd333 Mon Sep 17 00:00:00 2001 From: ueshita Date: Mon, 26 Feb 2024 13:41:08 +0900 Subject: [PATCH] Add required ImPlot flags --- Dev/Cpp/Viewer/GUI/efk.GUIManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dev/Cpp/Viewer/GUI/efk.GUIManager.cpp b/Dev/Cpp/Viewer/GUI/efk.GUIManager.cpp index 6136e11dc9..fdbfe14e73 100644 --- a/Dev/Cpp/Viewer/GUI/efk.GUIManager.cpp +++ b/Dev/Cpp/Viewer/GUI/efk.GUIManager.cpp @@ -2455,12 +2455,12 @@ void GUIManager::SetupPlotAxisTicks(PlotAxis axis, double vMin, double vMax, int void GUIManager::PlotLine(const char16_t* label, const double* xValues, const double* yValues, int32_t count, int32_t offset) { - ImPlot::PlotLine(utf8str<256>(label), xValues, yValues, count, offset); + ImPlot::PlotLine(utf8str<256>(label), xValues, yValues, count, ImPlotLineFlags_None, offset); } void GUIManager::PlotShaded(const char16_t* label, const double* xValues, const double* yValues, int32_t count, double yRef, int32_t offset) { - ImPlot::PlotShaded(utf8str<256>(label), xValues, yValues, count, yRef, offset); + ImPlot::PlotShaded(utf8str<256>(label), xValues, yValues, count, yRef, ImPlotShadedFlags_None, offset); } void GUIManager::SetNextPlotLineStyle(const Vec4& color, float weight)