From cd4be515f3cf2e7e193c1cc97120ff210115ef15 Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Sun, 25 May 2025 22:18:55 +0200 Subject: [PATCH] repaint boundary --- .../features/browser/presentation/widgets/tab_icon.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart b/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart index 4b4d18fc..4e659f3a 100644 --- a/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart +++ b/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart @@ -31,7 +31,9 @@ class TabIcon extends HookConsumerWidget { icon.connectionState != ConnectionState.done && icon.data == null, child: Skeleton.replace( replacement: Bone.icon(size: iconSize), - child: RawImage(image: icon.data, height: iconSize, width: iconSize), + child: RepaintBoundary( + child: RawImage(image: icon.data, height: iconSize, width: iconSize), + ), ), ); }