Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls.
| 16365 | |
| 16366 | // Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls. |
| 16367 | void ImGui::DebugFlashStyleColor(ImGuiCol idx) |
| 16368 | { |
| 16369 | ImGuiContext& g = *GImGui; |
| 16370 | DebugFlashStyleColorStop(); |
| 16371 | g.DebugFlashStyleColorTime = 0.5f; |
| 16372 | g.DebugFlashStyleColorIdx = idx; |
| 16373 | g.DebugFlashStyleColorBackup = g.Style.Colors[idx]; |
| 16374 | } |
| 16375 | |
| 16376 | void ImGui::UpdateDebugToolFlashStyleColor() |
| 16377 | { |
nothing calls this directly
no test coverage detected