mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
Previously the following sequence was broken: - Add two plot windows (creates Plot<0> and Plot<1>) - Delete Plot<0> - Try to create a plot window This failed because it would try to create Plot<1>, which already existed. It was necessary to also destroy Plot<1> before another plot could be added. This change fixes this case by trying all 0-N cases.