show warning once + remove useless flag

This commit is contained in:
otavepto 2024-06-20 05:49:46 +03:00
parent 369de6b01c
commit f29bde9551

View File

@ -1468,8 +1468,7 @@ void Steam_Overlay::render_main_window()
if (show_achievements && achievements.size()) { if (show_achievements && achievements.size()) {
ImGui::SetNextWindowSizeConstraints(ImVec2(ImGui::GetFontSize() * 32, ImGui::GetFontSize() * 32), ImVec2(8192, 8192)); ImGui::SetNextWindowSizeConstraints(ImVec2(ImGui::GetFontSize() * 32, ImGui::GetFontSize() * 32), ImVec2(8192, 8192));
ImGui::SetNextWindowBgAlpha(1.0f); ImGui::SetNextWindowBgAlpha(1.0f);
bool show = show_achievements; if (ImGui::Begin(translationAchievementWindow[current_language], &show_achievements)) {
if (ImGui::Begin(translationAchievementWindow[current_language], &show)) {
ImGui::Text("%s", translationListOfAchievements[current_language]); ImGui::Text("%s", translationListOfAchievements[current_language]);
ImGui::BeginChild(translationAchievements[current_language]); ImGui::BeginChild(translationAchievements[current_language]);
for (auto & x : achievements) { for (auto & x : achievements) {
@ -1543,7 +1542,6 @@ void Steam_Overlay::render_main_window()
} }
ImGui::End(); ImGui::End();
show_achievements = show;
} }
// user clicked on "settings" button // user clicked on "settings" button
@ -1625,8 +1623,10 @@ void Steam_Overlay::render_main_window()
} }
ImGui::End(); ImGui::End();
// if button closed, don't show the warning again
if (!show_warning) { if (!show_warning) {
warn_local_save = false; warn_local_save = false;
warn_bad_appid = false;
} }
} }
} }