feat: swap chapters/queue player icons

This commit is contained in:
edde746
2026-04-23 18:26:03 +02:00
parent d5d9da046e
commit 4a5cb224b1
3 changed files with 4 additions and 8 deletions
@@ -162,11 +162,7 @@ class _ChapterSheetState extends State<ChapterSheet> {
);
}
return BaseVideoControlSheet(
title: t.videoControls.chapters,
icon: Symbols.video_library_rounded,
child: content,
);
return BaseVideoControlSheet(title: t.videoControls.chapters, icon: Symbols.bookmarks_rounded, child: content);
},
);
}
@@ -96,7 +96,7 @@ class _QueueSheetState extends State<QueueSheet> {
);
}
return BaseVideoControlSheet(title: t.videoControls.queue, icon: Symbols.queue_music_rounded, child: content);
return BaseVideoControlSheet(title: t.videoControls.queue, icon: Symbols.queue_rounded, child: content);
},
);
}
@@ -290,7 +290,7 @@ class TrackChapterControls extends StatelessWidget {
buttons.add(
_buildTrackButton(
buttonIndex: currentIndex,
icon: Symbols.video_library_rounded,
icon: Symbols.bookmarks_rounded,
tooltip: t.videoControls.chaptersButton,
semanticLabel: t.videoControls.chaptersButton,
tracks: tracks,
@@ -321,7 +321,7 @@ class TrackChapterControls extends StatelessWidget {
buttons.add(
_buildTrackButton(
buttonIndex: currentIndex,
icon: Symbols.queue_music_rounded,
icon: Symbols.queue_rounded,
tooltip: t.videoControls.queue,
semanticLabel: t.videoControls.queue,
tracks: tracks,