chore: Follow up imageviewer

This commit is contained in:
krille-chan 2024-09-22 14:36:35 +02:00
commit 6866a996a3
No known key found for this signature in database
2 changed files with 9 additions and 4 deletions

View file

@ -60,7 +60,10 @@ class ImageBubble extends StatelessWidget {
if (!tapToView) return;
showDialog(
context: context,
builder: (_) => ImageViewer(event),
builder: (_) => ImageViewer(
event,
outerContext: context,
),
);
}