Skip to content

Commit

Permalink
TF-2646 Show Move all & Mark all as Spam action for selection all…
Browse files Browse the repository at this point in the history
… email in search
  • Loading branch information
dab246 committed May 2, 2024
1 parent ae94214 commit 41dabc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class TopBarThreadSelection extends StatelessWidget{
|| selectedMailbox?.isSpam == true
|| selectedMailbox?.isDrafts == true);

bool get canSpamAndMove => listEmail.isAllCanSpamAndMove(mapMailbox);
bool get canSpamAndMove => isSelectAllEmailsEnabled ? true : listEmail.isAllCanSpamAndMove(mapMailbox);

bool get isAllSpam => listEmail.isAllSpam(mapMailbox);

Expand Down

0 comments on commit 41dabc4

Please sign in to comment.