1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:37:47 +00:00

2048: Do not default to only temporarily applying settings changes

Also tweak its text in the settings window to be clearer on what this
check box is doing. Seemed a bit confusing that settings changes
required an extra action to persist.
This commit is contained in:
Timothy Flynn 2021-05-18 09:01:25 -04:00 committed by Andreas Kling
parent 1a66f487a5
commit 97cee35471
2 changed files with 2 additions and 2 deletions

View file

@ -23,5 +23,5 @@ private:
size_t m_board_size;
size_t m_target_tile_power;
bool m_evil_ai;
bool m_temporary { true };
bool m_temporary { false };
};