mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
9 lines
180 B
Swift
9 lines
180 B
Swift
import WebKit
|
|
|
|
@_cdecl("reload_webview")
|
|
public func reloadWebview(webview: WKWebView) -> () {
|
|
webview.window!.orderOut(webview);
|
|
webview.reload();
|
|
webview.window!.makeKey();
|
|
}
|