chore: small changes

This commit is contained in:
PartyDonut 2024-11-03 11:40:35 +01:00
parent fb84a48777
commit 2888896d18
3 changed files with 14 additions and 4 deletions

2
.github/release.yml vendored
View file

@ -5,7 +5,7 @@ changelog:
categories:
- title: Exciting New Features 🏕
labels:
- enhancement
- feature
- title: Bugfixes 🐞
labels:
- bug

View file

@ -300,10 +300,14 @@ class _VideoPlayerNextWrapperState extends ConsumerState<VideoPlayerNextWrapper>
),
),
if (AdaptiveLayout.of(context).isDesktop)
const Align(
AnimatedOpacity(
duration: animSpeed,
opacity: show ? 1 : 0,
child: const Align(
alignment: Alignment.topRight,
child: DefaultTitleBar(),
),
),
],
),
);

View file

@ -102,6 +102,12 @@ class _DesktopControlsState extends ConsumerState<DesktopControls> {
return false;
}
@override
void initState() {
super.initState();
timer.reset();
}
@override
Widget build(BuildContext context) {
final introSkipModel = ref.watch(playBackModel.select((value) => value?.introSkipModel));