diff --git a/lib/ui/viewer/gallery/gallery_app_bar_widget.dart b/lib/ui/viewer/gallery/gallery_app_bar_widget.dart index 1b5d2befc..812f7d73c 100644 --- a/lib/ui/viewer/gallery/gallery_app_bar_widget.dart +++ b/lib/ui/viewer/gallery/gallery_app_bar_widget.dart @@ -163,7 +163,7 @@ class _GalleryAppBarWidgetState extends State { PopupMenuButton( itemBuilder: (context) { final List items = []; - if (widget.collection.type == CollectionType.album) { + if (widget.collection.type != CollectionType.favorites) { items.add( PopupMenuItem( value: 1, @@ -173,7 +173,7 @@ class _GalleryAppBarWidgetState extends State { Padding( padding: EdgeInsets.all(8), ), - Text("Rename"), + Text("Rename album"), ], ), ), @@ -189,7 +189,7 @@ class _GalleryAppBarWidgetState extends State { const Padding( padding: EdgeInsets.all(8), ), - Text(isArchived ? "Unhide" : "Hide"), + Text(isArchived ? "Unhide album" : "Hide album"), ], ), ), @@ -200,11 +200,11 @@ class _GalleryAppBarWidgetState extends State { value: 3, child: Row( children: const [ - Icon(Icons.delete_sweep_outlined), + Icon(Icons.delete_outline), Padding( padding: EdgeInsets.all(8), ), - Text("Delete Album"), + Text("Delete album"), ], ), ),