Compare commits

..

No commits in common. "bab0dd329406b1734d750c76fb9f460893e0c983" and "d37c5dde2fb5e99d7a2b92ad20623c7459871cf1" have entirely different histories.

2 changed files with 4 additions and 8 deletions

View File

@ -2968,7 +2968,7 @@
repositoryURL = "https://git.shadowfacts.net/shadowfacts/HTMLStreamer.git";
requirement = {
kind = exactVersion;
version = 0.2.1;
version = 0.2.0;
};
};
D63CC700290EC0B8000E19DE /* XCRemoteSwiftPackageReference "sentry-cocoa" */ = {

View File

@ -332,13 +332,9 @@ class CustomAlertActionsView: UIControl {
if action.handler == nil,
case .menu(_) = action.style,
let interaction = button.contextMenuInteraction {
if #available(iOS 17.4, *) {
button.performPrimaryAction()
} else {
let selector = NSSelectorFromString(["Location:", "At", "Menu", "present", "_"].reversed().joined())
if interaction.responds(to: selector) {
interaction.perform(selector, with: recognizer.location(in: button))
}
let selector = NSSelectorFromString(["Location:", "At", "Menu", "present", "_"].reversed().joined())
if interaction.responds(to: selector) {
interaction.perform(selector, with: recognizer.location(in: button))
}
} else {
action.handler?()