| 13858 | } |
| 13859 | |
| 13860 | static void DebugFlashStyleColorStop() |
| 13861 | { |
| 13862 | ImGuiContext& g = *GImGui; |
| 13863 | if (g.DebugFlashStyleColorIdx != ImGuiCol_COUNT) |
| 13864 | g.Style.Colors[g.DebugFlashStyleColorIdx] = g.DebugFlashStyleColorBackup; |
| 13865 | g.DebugFlashStyleColorIdx = ImGuiCol_COUNT; |
| 13866 | } |
| 13867 | |
| 13868 | // Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls. |
| 13869 | void ImGui::DebugFlashStyleColor(ImGuiCol idx) |
no outgoing calls
no test coverage detected