diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-11 19:34:28 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-11 19:34:47 -0500 |
| commit | bc531d60d703e0113973a965450383049b930b73 (patch) | |
| tree | 110be8d2b2e9c45f4b2002a68996fed93ed682e6 /main.go | |
| parent | a4182c606b634615adb7f61d8b22dd92fdb8cabb (diff) | |
More of the previous error and not printing panics... derp me. Still not fixed yet though...
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,10 @@ package main func main() { w := NewWindow("Main Window") w.Closing = make(chan struct{}) - w.Open() + err := w.Open() + if err != nil { + panic(err) + } <-w.Closing w.Close() } |
