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
89ed90d1b4
commit
8c13741e00
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Reference in a new issue