chore: set all as default filter and remove spaces from all tab (#2605)
This commit is contained in:
parent
6fd6d19fef
commit
08946d5c38
2 changed files with 3 additions and 5 deletions
|
|
@ -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…
Add table
Reference in a new issue