chore: set all as default filter and remove spaces from all tab (#2605)

This commit is contained in:
ggurdin 2025-05-01 13:43:51 -04:00 committed by GitHub
parent 6fd6d19fef
commit 08946d5c38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 5 deletions

View file

@ -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;

View file

@ -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<ChatList>
case ActiveFilter.allChats:
// #Pangea
// return (room) => true;
return (room) => !room.isAnalyticsRoom;
return (room) => !room.isAnalyticsRoom && !room.isSpace;
// Pangea#
case ActiveFilter.messages:
return (room) =>