Skip to content

Commit

Permalink
Update trimmer properties (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKun committed Sep 1, 2023
1 parent 8233670 commit ebf3393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## v1.5.2 - 09/2023
- Added quick trim shortcuts in save video page for a more precise editing
- Added a new "lock orientation" button in the recording page
- Added a new experimental file picker with:
- Filter support: past dates will show videos recorded on that date on the top
Expand Down
3 changes: 1 addition & 2 deletions lib/pages/save_video/save_video_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ class _SaveVideoPageState extends State<SaveVideoPage> {
borderWidth: 2.5,
circleSize: 6.0,
circleSizeOnDrag: 9.0,
sideTapSize: 21,
circlePaintColor: isDarkTheme ? Colors.white : AppColors.mainColor,
borderPaintColor:
isDarkTheme ? AppColors.light : AppColors.mainColor.withOpacity(0.75),
Expand All @@ -530,7 +529,7 @@ class _SaveVideoPageState extends State<SaveVideoPage> {
durationTextStyle: isDarkTheme
? const TextStyle(color: Colors.white)
: const TextStyle(color: Colors.black),
maxVideoLength: const Duration(milliseconds: 10900),
maxVideoLength: const Duration(milliseconds: 10000),
viewerWidth: MediaQuery.of(context).size.width,
onChangeStart: (value) => _videoStartValue = value,
onChangeEnd: (value) => _videoEndValue = value,
Expand Down

0 comments on commit ebf3393

Please sign in to comment.