From 1758f43d931a84befdda22e1afa4f9f50ec93c05 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 16 May 2026 18:53:07 +1000 Subject: [PATCH] ImGuiManager: Use 1/255 as opacity threshold --- src/util/imgui_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/imgui_manager.cpp b/src/util/imgui_manager.cpp index f4311732b..07e073cfd 100644 --- a/src/util/imgui_manager.cpp +++ b/src/util/imgui_manager.cpp @@ -1379,7 +1379,7 @@ void ImGuiManager::DrawOSDMessages(Timer::Value current_time) } if (actual_y >= ImGui::GetIO().DisplaySize.y || (msg.type >= OSDMessageType::Info && !show_messages) || - opacity == 0.0f) + opacity < (1.0f / 255.0f)) { break; }