| 16265 | } |
| 16266 | |
| 16267 | static void DebugFlashStyleColorStop() |
| 16268 | { |
| 16269 | ImGuiContext& g = *GImGui; |
| 16270 | if (g.DebugFlashStyleColorIdx != ImGuiCol_COUNT) |
| 16271 | g.Style.Colors[g.DebugFlashStyleColorIdx] = g.DebugFlashStyleColorBackup; |
| 16272 | g.DebugFlashStyleColorIdx = ImGuiCol_COUNT; |
| 16273 | } |
| 16274 | |
| 16275 | // Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls. |
| 16276 | void ImGui::DebugFlashStyleColor(ImGuiCol idx) |
no outgoing calls
no test coverage detected