File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,18 @@ All notable changes to this project will be documented in this file. Take a look
4
4
5
5
** Warning:** Features marked as * alpha* may change or be removed in a future release without notice. Use with caution.
6
6
7
- <!-- ## [Unreleased] -->
7
+ ## [ Unreleased]
8
+
9
+ ### Fixed
10
+
11
+ #### Navigator
12
+
13
+ * [ #502 ] ( https://github.com/readium/swift-toolkit/issues/502 ) Fixed accessibility editing actions on iOS 18.
14
+
8
15
9
16
## [ 2.7.3]
10
17
11
- * [ #483 ] ( https://github.com/readium/swift-toolkit/issues/483 ) Fix build on Xcode 16.
18
+ * [ #483 ] ( https://github.com/readium/swift-toolkit/issues/483 ) Fixed build on Xcode 16.
12
19
13
20
14
21
## [ 2.7.2]
Original file line number Diff line number Diff line change @@ -120,6 +120,12 @@ final class EditingActionsController {
120
120
}
121
121
122
122
func canPerformAction( _ selector: Selector ) -> Bool {
123
+ // Accessibility editing actions (e.g. Spoken Option in Accessibility
124
+ // system settings) cannot be properly disabled.
125
+ guard !selector. description. hasPrefix ( " _accessibility " ) else {
126
+ return true
127
+ }
128
+
123
129
guard
124
130
isEnabled,
125
131
let selection = selection,
You can’t perform that action at this time.
0 commit comments