diff --git a/lib/pages/chat_list/chat_list_header.dart b/lib/pages/chat_list/chat_list_header.dart index d7af38e94..3cf2bde79 100644 --- a/lib/pages/chat_list/chat_list_header.dart +++ b/lib/pages/chat_list/chat_list_header.dart @@ -138,8 +138,8 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget { tooltip: L10n.of(context)!.toggleUnread, icon: Icon( controller.anySelectedRoomNotMarkedUnread - ? Icons.mark_chat_read_outlined - : Icons.mark_chat_unread_outlined, + ? Icons.mark_chat_unread_outlined + : Icons.mark_chat_read_outlined, ), onPressed: controller.toggleUnread, ), @@ -147,8 +147,8 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget { tooltip: L10n.of(context)!.toggleFavorite, icon: Icon( controller.anySelectedRoomNotFavorite - ? Icons.push_pin_outlined - : Icons.push_pin, + ? Icons.push_pin + : Icons.push_pin_outlined, ), onPressed: controller.toggleFavouriteRoom, ),