Skip to content

Commit

Permalink
set speed text to show 'Normal' in video player popup menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kunstmusik committed Oct 10, 2023
1 parent 35706df commit dfcde59
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions lib/pages/drive_detail/components/fs_entry_preview_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,10 @@ class _VideoPlayerWidgetState extends State<VideoPlayerWidget>
});
},
title: Text(
'$v',
v == 1.0
? appLocalizationsOf(context)
.normal
: '$v',
style: ArDriveTypography.body
.buttonNormalBold(
color: colors
Expand Down Expand Up @@ -956,7 +959,11 @@ class _FullScreenVideoPlayerWidgetState
});
},
title: Text(
'$v',
v == 1.0
? appLocalizationsOf(
context)
.normal
: '$v',
style: ArDriveTypography
.body
.buttonNormalBold(
Expand Down

0 comments on commit dfcde59

Please sign in to comment.