Skip to content

Commit b8b734b

Browse files
authored
iOS 26: Fix tint color in context menus in Reader Subscriptions (#24778)
* Fix tint color in Subscribers * Fix an issue with Notification Settings button not working in the Reader Subscriptions context menus for subscriptions
1 parent b02038d commit b8b734b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

WordPress/Classes/ViewRelated/Reader/Subscriptions/ReaderSubscriptionCell.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ struct ReaderSubscriptionCell: View {
5252
}, preview: {
5353
ReaderTopicPreviewView(topic: site)
5454
})
55+
.sheet(isPresented: $isShowingSettings) {
56+
ReaderSubscriptionNotificationSettingsView(siteID: site.siteID.intValue)
57+
.presentationDetents([.medium, .large])
58+
.edgesIgnoringSafeArea(.bottom)
59+
}
5560
}
5661

5762
private var buttonMore: some View {

WordPress/Classes/ViewRelated/Reader/Subscriptions/ReaderSubscriptionsView.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ struct ReaderSubscriptionsView: View {
4545
}
4646
}
4747
.navigationTitle(SharedStrings.Reader.subscriptions)
48-
.tint(Color(UIAppColor.primary))
4948
}
5049

5150
@ViewBuilder

0 commit comments

Comments
 (0)