We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d21396 commit 80ed643Copy full SHA for 80ed643
lib/widgets/actions.dart
@@ -32,7 +32,8 @@ abstract final class ZulipAction {
32
static Future<void> markNarrowAsRead(BuildContext context, Narrow narrow) async {
33
final zulipLocalizations = ZulipLocalizations.of(context);
34
35
- if (narrow is CombinedFeedNarrow || narrow is ChannelNarrow || narrow is MentionsNarrow) {
+ if (narrow is CombinedFeedNarrow || narrow is ChannelNarrow ||
36
+ narrow is MentionsNarrow || narrow is KeywordSearchNarrow) {
37
final didConfirm = showSuggestedActionDialog(context: context,
38
title: zulipLocalizations.markAllAsReadConfirmationDialogTitle,
39
message: zulipLocalizations.markAllAsReadConfirmationDialogMessage,
0 commit comments