summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-12 10:51:27 -0500
committerPietro Gagliardi <[email protected]>2014-02-12 10:51:27 -0500
commit49d0375975b81d0e09120455548370d1a1a9f387 (patch)
treeb8000ccd98b2dfe5fe19b158a7eb9643b3c24111 /main.go
parent3f8fe0e7108c1cd87e177bed22e3307c9df03e63 (diff)
Added initial window size and the Window.SetTitle() function.
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index e1ff2a1..70caf80 100644
--- a/main.go
+++ b/main.go
@@ -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 {