From f87764eef1c615e55e52ce07e4be7e003155bef3 Mon Sep 17 00:00:00 2001 From: Airyzz <36567925+Airyzz@users.noreply.github.com> Date: Mon, 6 Jul 2026 21:25:28 +0930 Subject: [PATCH] fix small ui bugs --- commet/lib/ui/organisms/home_screen/single_rooms_list.dart | 1 + .../account/preferences/preferences_chat_privacy.dart | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/commet/lib/ui/organisms/home_screen/single_rooms_list.dart b/commet/lib/ui/organisms/home_screen/single_rooms_list.dart index 533da80b1..95fcce309 100644 --- a/commet/lib/ui/organisms/home_screen/single_rooms_list.dart +++ b/commet/lib/ui/organisms/home_screen/single_rooms_list.dart @@ -29,6 +29,7 @@ class SingleRoomsList extends StatelessWidget { }, shrinkWrap: true, list: state.singleRooms, + physics: NeverScrollableScrollPhysics(), builder: (context, {required child, required list}) { if (list.isNotEmpty) { return Column( diff --git a/commet/lib/ui/pages/settings/categories/account/preferences/preferences_chat_privacy.dart b/commet/lib/ui/pages/settings/categories/account/preferences/preferences_chat_privacy.dart index 622f33351..2a40a810d 100644 --- a/commet/lib/ui/pages/settings/categories/account/preferences/preferences_chat_privacy.dart +++ b/commet/lib/ui/pages/settings/categories/account/preferences/preferences_chat_privacy.dart @@ -87,8 +87,8 @@ class _ChatPrivacyPreferences extends State { }); }, getValue: () => userPresenceComponent.typingIndicatorEnabled, - title: labelPublicReadReceiptsToggle, - description: labelPublicReadReceiptsDescription, + title: labelTypingIndicatorsToggle, + description: labelPublicTypingIndicatorDescription, ), BooleanToggle( setValue: (value) async {