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

BOX-SELECTION HasFlag() missing

'warning: left operand of comma operator has no effect [-Wunused-value]
         if (plot.Selecting && (plot.Flags, ImPlotFlags_Selection)) {'
                                ~~~~~^~~~~
This commit is contained in:
ozlb 2020-04-28 21:58:37 +02:00 committed by GitHub
parent 44f9f97084
commit 9a01d29bb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -727,7 +727,7 @@ bool BeginPlot(const char* title, const char* x_label, const char* y_label, cons
// confirm selection // confirm selection
if ((plot.Selecting || plot.Querying) && IO.MouseReleased[1]) { if ((plot.Selecting || plot.Querying) && IO.MouseReleased[1]) {
if (plot.Selecting && (plot.Flags, ImPlotFlags_Selection)) { if (plot.Selecting && HasFlag(plot.Flags, ImPlotFlags_Selection)) {
gp.UpdateTransforms(); gp.UpdateTransforms();
ImVec2 select_size = plot.SelectStart - IO.MousePos; ImVec2 select_size = plot.SelectStart - IO.MousePos;
if (ImFabs(select_size.x) > 2 && ImFabs(select_size.y) > 2) { if (ImFabs(select_size.x) > 2 && ImFabs(select_size.y) > 2) {
@ -1872,4 +1872,4 @@ void PlotLabel(const char* text, float x, float y, bool vertical, const ImVec2&
PopClipRect(); PopClipRect();
} }
} // namespace ImGui } // namespace ImGui