From 832ed0f1c367a46d0961ab0bc8f39e161d67bbc2 Mon Sep 17 00:00:00 2001 From: ZeldaZach Date: Sat, 25 Jan 2025 00:01:46 -0500 Subject: [PATCH] Show all games when "Clear Filter" applied --- cockatrice/src/game/games_model.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cockatrice/src/game/games_model.cpp b/cockatrice/src/game/games_model.cpp index 0ec6df027..0981d5b49 100644 --- a/cockatrice/src/game/games_model.cpp +++ b/cockatrice/src/game/games_model.cpp @@ -26,8 +26,8 @@ enum GameListColumn SPECTATORS }; -const bool DEFAULT_SHOW_FULL_GAMES = false; -const bool DEFAULT_SHOW_GAMES_THAT_STARTED = false; +const bool DEFAULT_SHOW_FULL_GAMES = true; +const bool DEFAULT_SHOW_GAMES_THAT_STARTED = true; const bool DEFAULT_SHOW_PASSWORD_PROTECTED_GAMES = true; const bool DEFAULT_SHOW_BUDDIES_ONLY_GAMES = true; const bool DEFAULT_HIDE_IGNORED_USER_GAMES = false;