You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to be able to disable 3D touch to preview links on both iOS and MacOS we can do this on MacOS without any changes to wry however as there is no access to objc2_web_kit::WKWebView on iOS (see issue Make objc2_web_kit::WKWebView supports iOS #637) we need to have that as a change within wry as there is a copy of the WKWebView for iOS maintained in this repo src/wkwebview/ios/WKWebView.rs.
We would like a way to set this as a platform specific setting for both iOS and MacOS as this would be the easiest to implement and when the webview is created that value is set within wry calling setAllowsLinkPreview on the WKWebView.
The text was updated successfully, but these errors were encountered:
I need to be able to disable 3D touch to preview links on both iOS and MacOS we can do this on MacOS without any changes to wry however as there is no access to
objc2_web_kit::WKWebView
on iOS (see issue Make objc2_web_kit::WKWebView supports iOS #637) we need to have that as a change withinwry
as there is a copy of theWKWebView
for iOS maintained in this reposrc/wkwebview/ios/WKWebView.rs
.See the pull request adding this feature to
tauri-plugin-prevent-default
Added webkit allowsLinkPreview to prevent 3D touch preview on links #28
We would like a way to set this as a platform specific setting for both iOS and MacOS as this would be the easiest to implement and when the webview is created that value is set within
wry
callingsetAllowsLinkPreview
on theWKWebView
.The text was updated successfully, but these errors were encountered: