feat: swap chapters/queue player icons
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user