diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-06-19 17:42:06 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-06-19 17:42:06 +0200 |
commit | 6aa6b0cd01212a1317b87b9b7d8db60fa787de8c (patch) | |
tree | e28399efcc2638f75123692f23418d086820f161 /main.go | |
parent | 63aab32a7525677dda8ea553c1b71b75d15b4eeb (diff) |
[bug] lock main goroutine into OS thread
- Resolves: #52
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -20,6 +20,7 @@ import ( "fmt" "log" "os" + "runtime" "0xacab.org/leap/bitmask-systray/bitmask" "github.com/jmshal/go-locale" @@ -35,6 +36,10 @@ var version string var printer *message.Printer func main() { + // on OSX sometimes the systray doesn't work (bitmask-systray#52) + // locking the main thread into an OS thread fixes the problem + runtime.LockOSThread() + versionFlag := flag.Bool("version", false, "Version of the bitmask-systray") flag.Parse() if *versionFlag { |