diff --git a/.github/release.yml b/.github/release.yml index 6635491..ac8a94a 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -5,7 +5,7 @@ changelog: categories: - title: Exciting New Features 🏕 labels: - - enhancement + - feature - title: Bugfixes 🐞 labels: - bug diff --git a/lib/screens/video_player/components/video_player_next_wrapper.dart b/lib/screens/video_player/components/video_player_next_wrapper.dart index 6e0cdba..90804a4 100644 --- a/lib/screens/video_player/components/video_player_next_wrapper.dart +++ b/lib/screens/video_player/components/video_player_next_wrapper.dart @@ -300,9 +300,13 @@ class _VideoPlayerNextWrapperState extends ConsumerState ), ), if (AdaptiveLayout.of(context).isDesktop) - const Align( - alignment: Alignment.topRight, - child: DefaultTitleBar(), + AnimatedOpacity( + duration: animSpeed, + opacity: show ? 1 : 0, + child: const Align( + alignment: Alignment.topRight, + child: DefaultTitleBar(), + ), ), ], ), diff --git a/lib/screens/video_player/video_player_controls.dart b/lib/screens/video_player/video_player_controls.dart index 9679caa..87fd741 100644 --- a/lib/screens/video_player/video_player_controls.dart +++ b/lib/screens/video_player/video_player_controls.dart @@ -102,6 +102,12 @@ class _DesktopControlsState extends ConsumerState { return false; } + @override + void initState() { + super.initState(); + timer.reset(); + } + @override Widget build(BuildContext context) { final introSkipModel = ref.watch(playBackModel.select((value) => value?.introSkipModel));