mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Add close button for overlay
This commit is contained in:
parent
5ad434e190
commit
8abb0c8bc2
1 changed files with 6 additions and 1 deletions
|
@ -478,7 +478,9 @@ void Steam_Overlay::OverlayProc()
|
|||
|
||||
ImGui::PushFont(font_default);
|
||||
|
||||
if (ImGui::Begin("SteamOverlay", nullptr, ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoBringToFrontOnFocus))
|
||||
bool show;
|
||||
|
||||
if (ImGui::Begin("SteamOverlay", &show, ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoBringToFrontOnFocus))
|
||||
{
|
||||
ImGui::LabelText("##label", "Username: %s(%llu) playing %u",
|
||||
settings->get_local_name(),
|
||||
|
@ -514,6 +516,9 @@ void Steam_Overlay::OverlayProc()
|
|||
ImGui::End();
|
||||
|
||||
ImGui::PopFont();
|
||||
|
||||
if (!show)
|
||||
ShowOverlay(false);
|
||||
}// if(show_overlay)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue