diff --git a/changelog b/changelog index 09d35fbf931..f563335d0f9 100644 --- a/changelog +++ b/changelog @@ -65,6 +65,7 @@ Version 1.9.9+svn: time * Slowed units are now tinted to be recognizable at a glance * Fixed: Removed old markup style from OOS messages (bug #18387). + * Fixed: OOS ignore toggle in the save dialog (bug #18330). * WML engine: * Readded the liminal alignment * Added four-difficulty versions of certain macros: QUANTITY4, diff --git a/src/gui/dialogs/game_save.cpp b/src/gui/dialogs/game_save.cpp index 34d2a20c0c8..b6739887951 100644 --- a/src/gui/dialogs/game_save.cpp +++ b/src/gui/dialogs/game_save.cpp @@ -77,6 +77,9 @@ tgame_save_oos::tgame_save_oos( register_label("txtFilename", false, filename); register_label("lblMessage", true, message); register_bool("ignore_all", true, ignore_all); + + /* Always need the ignore_all flag. */ + set_always_save_fields(true); } } // namespace gui2