diff options
| author | faiface <faiface@ksp.sk> | 2017-08-19 17:23:58 +0200 |
|---|---|---|
| committer | faiface <faiface@ksp.sk> | 2017-08-19 17:23:58 +0200 |
| commit | a8f1978564de3a32ff83ab57433bf14c5fad6a60 (patch) | |
| tree | 05c6996d5b21b673b269f713859ecf08776fa644 | |
| parent | c5bff7b0027e1daffd3dbfd6e7c22f94463d5e4c (diff) | |
| download | gui-a8f1978564de3a32ff83ab57433bf14c5fad6a60.zip | |
win: rename event "wi/resize" -> "resize"
| -rw-r--r-- | win/events.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/events.go b/win/events.go index 7681e2c..893cd3e 100644 --- a/win/events.go +++ b/win/events.go @@ -31,7 +31,7 @@ func (w *Win) setUpMainthreadEvents() { w.w.SetSizeCallback(func(_ *glfw.Window, width, height int) { w.resize(width, height) - w.mainthreadEvent("wi", "resize", width, height) + w.mainthreadEvent("resize", width, height) }) w.w.SetCloseCallback(func(_ *glfw.Window) { |