| 305 | } |
| 306 | |
| 307 | ImPlotItem* GetItem(const char* label_id) { |
| 308 | ImPlotContext& gp = *GImPlot; |
| 309 | return gp.CurrentItems->GetItem(label_id); |
| 310 | } |
| 311 | |
| 312 | bool IsItemHidden(const char* label_id) { |
| 313 | ImPlotItem* item = GetItem(label_id); |
no test coverage detected