Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls.
| 22067 | |
| 22068 | // Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls. |
| 22069 | void ImGui::DebugFlashStyleColor(ImGuiCol idx) |
| 22070 | { |
| 22071 | ImGuiContext& g = *GImGui; |
| 22072 | DebugFlashStyleColorStop(); |
| 22073 | g.DebugFlashStyleColorTime = 0.5f; |
| 22074 | g.DebugFlashStyleColorIdx = idx; |
| 22075 | g.DebugFlashStyleColorBackup = g.Style.Colors[idx]; |
| 22076 | } |
| 22077 | |
| 22078 | void ImGui::UpdateDebugToolFlashStyleColor() |
| 22079 | { |
nothing calls this directly
no test coverage detected