mirror of
https://github.com/gwm17/implot.git
synced 2024-11-23 02:38:53 -05:00
Merge pull request #5 from ozlb/patch-1
BOX-SELECTION HasFlag() missing
This commit is contained in:
commit
7d217904a8
|
@ -727,7 +727,7 @@ bool BeginPlot(const char* title, const char* x_label, const char* y_label, cons
|
|||
|
||||
// confirm selection
|
||||
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();
|
||||
ImVec2 select_size = plot.SelectStart - IO.MousePos;
|
||||
if (ImFabs(select_size.x) > 2 && ImFabs(select_size.y) > 2) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user