Skip to content

Commit

Permalink
Hot fix missing composer button on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 committed Sep 17, 2024
1 parent 8221c2e commit eb1b356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/features/thread/presentation/thread_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ class ThreadView extends GetWidget<ThreadController>

return Obx(() {
final isAdvancedSearchViewOpen = controller.searchController.isAdvancedSearchViewOpen.value;
if (controller.searchController.isSearchActive() && !isAdvancedSearchViewOpen) {
if (!controller.searchController.isSearchActive() && !isAdvancedSearchViewOpen) {
return Container(
padding: PlatformInfo.isMobile && controller.listEmailSelected.isNotEmpty
? EdgeInsets.only(bottom: controller.responsiveUtils.isTabletLarge(context) ? 85 : 70)
Expand Down

0 comments on commit eb1b356

Please sign in to comment.