From 08946d5c386d397393bf662ae33654592b9b7ca3 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Thu, 1 May 2025 13:43:51 -0400 Subject: [PATCH] chore: set all as default filter and remove spaces from all tab (#2605) --- lib/config/app_config.dart | 5 +---- lib/pages/chat_list/chat_list.dart | 3 ++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/config/app_config.dart b/lib/config/app_config.dart index e7ceedac5..7456c3ef2 100644 --- a/lib/config/app_config.dart +++ b/lib/config/app_config.dart @@ -122,10 +122,7 @@ abstract class AppConfig { static bool hideRedactedEvents = false; static bool hideUnknownEvents = true; static bool hideUnimportantStateEvents = true; - // #Pangea - // static bool separateChatTypes = false; - static bool separateChatTypes = true; - // Pangea# + static bool separateChatTypes = false; static bool autoplayImages = true; static bool sendTypingNotifications = true; static bool sendPublicReadReceipts = true; diff --git a/lib/pages/chat_list/chat_list.dart b/lib/pages/chat_list/chat_list.dart index adceff411..6ffb3dabd 100644 --- a/lib/pages/chat_list/chat_list.dart +++ b/lib/pages/chat_list/chat_list.dart @@ -43,6 +43,7 @@ import '../../widgets/matrix.dart'; import 'package:fluffychat/utils/tor_stub.dart' if (dart.library.html) 'package:tor_detector_web/tor_detector_web.dart'; + enum PopupMenuAction { settings, invite, @@ -215,7 +216,7 @@ class ChatListController extends State case ActiveFilter.allChats: // #Pangea // return (room) => true; - return (room) => !room.isAnalyticsRoom; + return (room) => !room.isAnalyticsRoom && !room.isSpace; // Pangea# case ActiveFilter.messages: return (room) =>