Skip to content

Commit 0e6bbfb

Browse files
tobiasmaierchristian-rauch
authored andcommitted
Keep Plotter::ResetColourWheel() for API compatiblilty
1 parent 8a2625c commit 0e6bbfb

File tree

1 file changed

+7
-1
lines changed
  • components/pango_plot/include/pangolin/plot

1 file changed

+7
-1
lines changed

components/pango_plot/include/pangolin/plot/plotter.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,15 @@ class PANGOLIN_EXPORT Plotter : public View, Handler
192192
void ClearImplicitPlots();
193193
void AddImplicitPlot();
194194

195-
/// Reset colour wheel to initial state. May be useful together with ClearSeries() / ClearMarkers()
195+
/// Reset colour provider to initial state. May be useful together with ClearSeries() / ClearMarkers()
196196
void ResetColourProvider();
197197

198+
/// Alias for ResetColourProvider for API compatibility.
199+
void ResetColourWheel()
200+
{
201+
ResetColourProvider();
202+
}
203+
198204
void ShowHoverLines(bool show)
199205
{
200206
showHoverLines = show;

0 commit comments

Comments
 (0)