mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-09 20:47:26 +01:00
internal/ui: bug fix: InitUnfocused option didn't work
Updates #2924 Closes #3099
This commit is contained in:
parent
99ffe09b63
commit
e90f99bd4a
@ -81,6 +81,8 @@ type userInterfaceImpl struct {
|
||||
initWindowMaximized bool
|
||||
initWindowMousePassthrough bool
|
||||
|
||||
initUnfocused bool
|
||||
|
||||
// bufferOnceSwapped must be accessed from the main thread.
|
||||
bufferOnceSwapped bool
|
||||
updateOnceCalled bool
|
||||
@ -1120,6 +1122,7 @@ func (u *UserInterface) initOnMainThread(options *RunOptions) error {
|
||||
return err
|
||||
}
|
||||
|
||||
u.initUnfocused = options.InitUnfocused
|
||||
focused := glfw.True
|
||||
if options.InitUnfocused {
|
||||
focused = glfw.False
|
||||
@ -1325,8 +1328,10 @@ func (u *UserInterface) update() (float64, float64, error) {
|
||||
if err = u.window.Show(); err != nil {
|
||||
return
|
||||
}
|
||||
if err = u.window.Focus(); err != nil {
|
||||
return
|
||||
if !u.initUnfocused {
|
||||
if err = u.window.Focus(); err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
|
||||
|
Loading…
Reference in New Issue
Block a user