| 22058 | } |
| 22059 | |
| 22060 | static void DebugFlashStyleColorStop() |
| 22061 | { |
| 22062 | ImGuiContext& g = *GImGui; |
| 22063 | if (g.DebugFlashStyleColorIdx != ImGuiCol_COUNT) |
| 22064 | g.Style.Colors[g.DebugFlashStyleColorIdx] = g.DebugFlashStyleColorBackup; |
| 22065 | g.DebugFlashStyleColorIdx = ImGuiCol_COUNT; |
| 22066 | } |
| 22067 | |
| 22068 | // Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls. |
| 22069 | void ImGui::DebugFlashStyleColor(ImGuiCol idx) |
no outgoing calls
no test coverage detected