mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
fix: limit ocr overlay to images (#30116)
This commit is contained in:
parent
a30ebab70c
commit
e508781125
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ class ViewerBottomBar extends ConsumerWidget {
|
|||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
OcrToggleButton(asset: asset),
|
||||
if (asset.isImage) OcrToggleButton(asset: asset),
|
||||
if (asset.isVideo) VideoControls(videoPlayerName: asset.heroTag),
|
||||
if (!isReadonlyModeEnabled)
|
||||
Row(mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: actions),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue