Unify icon used for add to album button

This commit is contained in:
Ming Ming 2022-01-22 20:04:18 +08:00
parent b417ccb6a0
commit 00e3ce8c32
3 changed files with 3 additions and 3 deletions

View file

@ -190,7 +190,7 @@ class _HomePhotosState extends State<HomePhotos>
},
),
IconButton(
icon: const Icon(Icons.playlist_add),
icon: const Icon(Icons.add),
tooltip: L10n.global().addToAlbumTooltip,
onPressed: () {
_onSelectionAddToAlbumPressed(context);

View file

@ -266,7 +266,7 @@ class _PersonBrowserState extends State<PersonBrowser>
},
),
IconButton(
icon: const Icon(Icons.playlist_add),
icon: const Icon(Icons.add),
tooltip: L10n.global().addToAlbumTooltip,
onPressed: () {
_onSelectionAddToAlbumPressed(context);

View file

@ -146,7 +146,7 @@ class _ViewerDetailPaneState extends State<ViewerDetailPane> {
onPressed: () => _onSetAlbumCoverPressed(context),
),
_DetailPaneButton(
icon: Icons.playlist_add_outlined,
icon: Icons.add,
label: L10n.global().addToAlbumTooltip,
onPressed: () => _onAddToAlbumPressed(context),
),