diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-12 10:51:27 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-12 10:51:27 -0500 |
| commit | 49d0375975b81d0e09120455548370d1a1a9f387 (patch) | |
| tree | b8000ccd98b2dfe5fe19b158a7eb9643b3c24111 /main.go | |
| parent | 3f8fe0e7108c1cd87e177bed22e3307c9df03e63 (diff) | |
Added initial window size and the Window.SetTitle() function.
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ package main func main() { - w := NewWindow("Main Window") + w := NewWindow("Main Window", 320, 240) w.Closing = make(chan struct{}) err := w.Open() if err != nil { |
