From 295c5a74ea30c9f7dec81f5b61906671dda0a72b Mon Sep 17 00:00:00 2001 From: aAbed <39409020+TheAabedKhan@users.noreply.github.com> Date: Tue, 6 Aug 2024 06:31:01 +0545 Subject: [PATCH] fix: Unable to scroll in the removed patches dialog (#2113) --- lib/ui/views/patcher/patcher_viewmodel.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/ui/views/patcher/patcher_viewmodel.dart b/lib/ui/views/patcher/patcher_viewmodel.dart index f49ec75b9d..68d86520b3 100644 --- a/lib/ui/views/patcher/patcher_viewmodel.dart +++ b/lib/ui/views/patcher/patcher_viewmodel.dart @@ -55,9 +55,11 @@ class PatcherViewModel extends BaseViewModel { context: context, builder: (context) => AlertDialog( title: Text(t.notice), - content: Text( - t.patcherView.removedPatchesWarningDialogText( - patches: removedPatches.join('\n'), + content: SingleChildScrollView( + child: Text( + t.patcherView.removedPatchesWarningDialogText( + patches: removedPatches.join('\n'), + ), ), ), actions: [