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

pull/2245/head
ggurdin 7 months ago committed by GitHub
parent 6fd6d19fef
commit 08946d5c38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

@ -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) =>

Loading…
Cancel
Save