diff --git a/lib/pangea/chat_settings/pages/chat_details_button_row.dart b/lib/pangea/chat_settings/pages/chat_details_button_row.dart index 33256f836..be7ad2bc1 100644 --- a/lib/pangea/chat_settings/pages/chat_details_button_row.dart +++ b/lib/pangea/chat_settings/pages/chat_details_button_row.dart @@ -214,6 +214,16 @@ class ChatDetailsButtonRowState extends State { return const SizedBox(); } + if (otherButtons.length == 1) { + return Expanded( + child: RoomDetailsButton( + mini: mini, + buttonDetails: otherButtons.first, + height: mini ? _miniButtonWidth : _buttonHeight, + ), + ); + } + return Expanded( child: PopupMenuButton( useRootNavigator: true,