Skip to content

Commit

Permalink
fix: Unable to scroll in the removed patches dialog (#2113)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAabedKhan authored Aug 6, 2024
1 parent 400df69 commit 295c5a7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/ui/views/patcher/patcher_viewmodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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: <Widget>[
Expand Down

0 comments on commit 295c5a7

Please sign in to comment.