mirror of https://github.com/xemu-project/xemu.git
ui: Fix alpha fade out for main menu
This commit is contained in:
parent
b04ceb7de2
commit
80940258fe
|
@ -472,12 +472,12 @@ void xemu_hud_render(SDL_Window *window)
|
|||
if (t >= 1.0) {
|
||||
alpha = 0.0;
|
||||
}
|
||||
ImGui::SetNextWindowBgAlpha(alpha);
|
||||
}
|
||||
if (alpha > 0.0) {
|
||||
ImVec4 tc = ImGui::GetStyle().Colors[ImGuiCol_Text];
|
||||
tc.w = alpha;
|
||||
ImGui::PushStyleColor(ImGuiCol_Text, tc);
|
||||
ImGui::SetNextWindowBgAlpha(alpha);
|
||||
ShowMainMenu();
|
||||
ImGui::PopStyleColor();
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue