Skip to content

Commit e82e53b

Browse files
authored
iOS 26: Fix background color in chart customization (#24867)
* Fix backgorund color in chart cutomization * Update release notes
1 parent 5a75a27 commit e82e53b

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

Modules/Sources/JetpackStats/Views/Customization/AddCardSheet.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ struct AddCardSheet: View {
6969
}
7070
.padding(.horizontal, Constants.step1)
7171
.padding(.vertical, Constants.step0_5)
72-
.background(Color(UIColor.secondarySystemGroupedBackground))
7372
.clipShape(RoundedRectangle(cornerRadius: 10))
7473
}
7574
}

Modules/Sources/JetpackStats/Views/Customization/ChartCardCustomizationView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ struct ChartCardCustomizationView: View {
104104
.contentShape(Rectangle())
105105
}
106106
.buttonStyle(.plain)
107+
.listRowBackground(Color.clear)
107108
}
108109

109110
private func resetToDefaults() {

Modules/Sources/JetpackStats/Views/Customization/TopListCardCustomizationView.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SwiftUI
2+
import WordPressUI
23

34
struct TopListCardCustomizationView: View {
45
let viewModel: TopListViewModel
@@ -82,6 +83,7 @@ struct TopListCardCustomizationView: View {
8283
.contentShape(Rectangle())
8384
}
8485
.buttonStyle(.plain)
86+
.listRowBackground(Color.clear)
8587
}
8688

8789
private func updateConfiguration(with item: TopListItemType) {

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
26.4
22
-----
3+
* [*] Fix a few minor visual issues on iOS 26 [#24863], [#24863], [#24865], [#24866], [#24867]
34
* [*] [Intelligence] Add support for generating excerpts for posts [#24852]
45
* [*] Fix performance issues with search in Reader Subscriptions [#24841]
56

0 commit comments

Comments
 (0)