mirror of
https://github.com/gwm17/implot.git
synced 2024-11-23 02:38:53 -05:00
Merge pull request #96 from jaswantp/SkipDrawQuery
Draw query rect only when query enabled.
This commit is contained in:
commit
c1daaab8ea
|
@ -1323,6 +1323,8 @@ void EndPlot() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ImHasFlag(plot.Flags, ImPlotFlags_Query)) // draw query rect only when query enabled.
|
||||||
|
{
|
||||||
if (plot.Querying || plot.Queried) {
|
if (plot.Querying || plot.Queried) {
|
||||||
if (plot.QueryRect.GetWidth() > 2 && plot.QueryRect.GetHeight() > 2) {
|
if (plot.QueryRect.GetWidth() > 2 && plot.QueryRect.GetHeight() > 2) {
|
||||||
DrawList.AddRectFilled(plot.QueryRect.Min + gp.BB_Plot.Min, plot.QueryRect.Max + gp.BB_Plot.Min, gp.Col_QryBg);
|
DrawList.AddRectFilled(plot.QueryRect.Min + gp.BB_Plot.Min, plot.QueryRect.Max + gp.BB_Plot.Min, gp.Col_QryBg);
|
||||||
|
@ -1338,6 +1340,7 @@ void EndPlot() {
|
||||||
DrawList.AddRectFilled(bb_query.Min, bb_query.Max, gp.Col_QryBg);
|
DrawList.AddRectFilled(bb_query.Min, bb_query.Max, gp.Col_QryBg);
|
||||||
DrawList.AddRect( bb_query.Min, bb_query.Max, gp.Col_QryBd);
|
DrawList.AddRect( bb_query.Min, bb_query.Max, gp.Col_QryBd);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// render legend
|
// render legend
|
||||||
const float txt_ht = ImGui::GetTextLineHeight();
|
const float txt_ht = ImGui::GetTextLineHeight();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user