mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
fix: always show spaces bottom bar with group/DM separated
- always show the spaces bottom bar in case group/DMs are separated Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
This commit is contained in:
parent
beb3ae9be3
commit
cc5e8b8684
@ -26,8 +26,8 @@ class ChatListView extends StatelessWidget {
|
||||
stream: Matrix.of(context).onShareContentChanged.stream,
|
||||
builder: (_, __) {
|
||||
final selectMode = controller.selectMode;
|
||||
final showSpaces =
|
||||
controller.spaces.isNotEmpty && controller.selectedRoomIds.isEmpty;
|
||||
final showSpaces = controller.spacesEntries.length > 1 &&
|
||||
controller.selectedRoomIds.isEmpty;
|
||||
return VWidgetGuard(
|
||||
onSystemPop: (redirector) async {
|
||||
final selMode = controller.selectMode;
|
||||
|
Loading…
Reference in New Issue
Block a user