Mac OSX Launcher: Cleanup and update in UI classes. Swift 4.2

This commit is contained in:
meeh
2019-05-02 22:51:35 +00:00
parent 7cb0c9bbb4
commit 540e7c37e0
3 changed files with 54 additions and 45 deletions

View File

@ -34,7 +34,7 @@ import Cocoa
@objc func actionBtnOpenConsole(_ sender: Any?) {
SwiftMainDelegate.openLink(url: "http://localhost:7657")
SwiftApplicationDelegate.openLink(url: "http://localhost:7657")
}
@objc func actionBtnStartRouter(_ sender: Any?) {
@ -80,7 +80,7 @@ import Cocoa
@objc func actionBtnLaunchFirefox(_ sender: Any?) {
DispatchQueue.global(qos: .background).async {
Swift.print("Starting firefox")
FirefoxManager.shared().executeFirefox()
let _ = FirefoxManager.shared().executeFirefox()
}
}