mirror of
https://github.com/gwm17/implot.git
synced 2024-11-23 02:38:53 -05:00
Fix clamp in SetupAxisTicks
This commit is contained in:
parent
9ef3a97966
commit
57149164d5
|
@ -2162,7 +2162,7 @@ void SetupAxisTicks(ImAxis idx, const double* values, int n_ticks, const char* c
|
||||||
void SetupAxisTicks(ImAxis idx, double v_min, double v_max, int n_ticks, const char* const labels[], bool show_default) {
|
void SetupAxisTicks(ImAxis idx, double v_min, double v_max, int n_ticks, const char* const labels[], bool show_default) {
|
||||||
IM_ASSERT_USER_ERROR(GImPlot->CurrentPlot != NULL && !GImPlot->CurrentPlot->SetupLocked,
|
IM_ASSERT_USER_ERROR(GImPlot->CurrentPlot != NULL && !GImPlot->CurrentPlot->SetupLocked,
|
||||||
"Setup needs to be called after BeginPlot and before any setup locking functions (e.g. PlotX)!");
|
"Setup needs to be called after BeginPlot and before any setup locking functions (e.g. PlotX)!");
|
||||||
n_ticks = ImClamp(n_ticks, 2, n_ticks);
|
n_ticks = n_ticks < 2 ? 2 : n_ticks;
|
||||||
FillRange(GImPlot->TempDouble1, n_ticks, v_min, v_max);
|
FillRange(GImPlot->TempDouble1, n_ticks, v_min, v_max);
|
||||||
SetupAxisTicks(idx, GImPlot->TempDouble1.Data, n_ticks, labels, show_default);
|
SetupAxisTicks(idx, GImPlot->TempDouble1.Data, n_ticks, labels, show_default);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user