increment version number

pull/795/head
ggurdin 2 years ago
parent f58bc1d67d
commit e2248b0c06

@ -598,7 +598,7 @@ class ChatListController extends State<ChatList>
setState(() {});
// #Pangea
if (archivedActiveRoom) {
VRouter.of(context).to('/rooms');
context.go('/rooms');
}
// Pangea#
}

@ -167,7 +167,7 @@ class _SpaceViewState extends State<SpaceView> {
future: () async {
await room!.leave();
if (Matrix.of(context).activeRoomId == room.id) {
VRouter.of(context).to('/rooms');
context.go('/rooms');
}
},
// Pangea#

@ -106,17 +106,17 @@ class ChatSettingsPopupMenuState extends State<ChatSettingsPopupMenu> {
// ],
// ),
// ),
// PopupMenuItem<String>(
// value: 'todos',
// child: Row(
// children: [
// const Icon(Icons.task_alt_outlined),
// const SizedBox(width: 12),
// Text(L10n.of(context)!.todoLists),
// ],
// ),
// ),
// Pangea#
PopupMenuItem<String>(
value: 'todos',
child: Row(
children: [
const Icon(Icons.task_alt_outlined),
const SizedBox(width: 12),
Text(L10n.of(context)!.todoLists),
],
),
),
PopupMenuItem<String>(
value: 'leave',
child: Row(

Loading…
Cancel
Save