| 346 | } |
| 347 | |
| 348 | ImPlotItem* GetItem(const char* label_id) { |
| 349 | ImPlotContext& gp = *GImPlot; |
| 350 | return gp.CurrentItems->GetItem(label_id); |
| 351 | } |
| 352 | |
| 353 | bool IsItemHidden(const char* label_id) { |
| 354 | ImPlotItem* item = GetItem(label_id); |
no test coverage detected