mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-12 22:17:26 +01:00
internal/glfw: bug fix: the window should be focused when closing is handled
Closes #2165
This commit is contained in:
parent
dd292552d5
commit
bc8e2fe6ac
@ -105,6 +105,10 @@ func (w *Window) Destroy() {
|
|||||||
theWindows.remove(w.w)
|
theWindows.remove(w.w)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (w *Window) Focus() {
|
||||||
|
w.w.Focus()
|
||||||
|
}
|
||||||
|
|
||||||
func (w *Window) GetAttrib(attrib Hint) int {
|
func (w *Window) GetAttrib(attrib Hint) int {
|
||||||
return w.w.GetAttrib(glfw.Hint(attrib))
|
return w.w.GetAttrib(glfw.Hint(attrib))
|
||||||
}
|
}
|
||||||
|
@ -66,6 +66,12 @@ func (w *Window) Destroy() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (w *Window) Focus() {
|
||||||
|
if err := (*glfwwin.Window)(w).Focus(); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (w *Window) GetAttrib(attrib Hint) int {
|
func (w *Window) GetAttrib(attrib Hint) int {
|
||||||
r, err := (*glfwwin.Window)(w).GetAttrib(glfwwin.Hint(attrib))
|
r, err := (*glfwwin.Window)(w).GetAttrib(glfwwin.Hint(attrib))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -74,12 +80,6 @@ func (w *Window) GetAttrib(attrib Hint) int {
|
|||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *Window) SetAttrib(attrib Hint, value int) {
|
|
||||||
if err := (*glfwwin.Window)(w).SetAttrib(glfwwin.Hint(attrib), value); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (w *Window) GetCursorPos() (x, y float64) {
|
func (w *Window) GetCursorPos() (x, y float64) {
|
||||||
x, y, err := (*glfwwin.Window)(w).GetCursorPos()
|
x, y, err := (*glfwwin.Window)(w).GetCursorPos()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -166,6 +166,12 @@ func (w *Window) Restore() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (w *Window) SetAttrib(attrib Hint, value int) {
|
||||||
|
if err := (*glfwwin.Window)(w).SetAttrib(glfwwin.Hint(attrib), value); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (w *Window) SetCharModsCallback(cbfun CharModsCallback) (previous CharModsCallback) {
|
func (w *Window) SetCharModsCallback(cbfun CharModsCallback) (previous CharModsCallback) {
|
||||||
f, err := (*glfwwin.Window)(w).SetCharModsCallback(cbfun)
|
f, err := (*glfwwin.Window)(w).SetCharModsCallback(cbfun)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -780,6 +780,7 @@ func (u *userInterfaceImpl) registerWindowCloseCallback() {
|
|||||||
if !u.isWindowClosingHandled() {
|
if !u.isWindowClosingHandled() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
u.window.Focus()
|
||||||
u.window.SetShouldClose(false)
|
u.window.SetShouldClose(false)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user