mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 11:48:55 +01:00
internal/ui: bug fix: setWindowMonitor was processed even when the same monitor was specified
Updates #1835
This commit is contained in:
parent
b710ff17c8
commit
32bd565df9
@ -357,7 +357,7 @@ func (u *userInterfaceImpl) setWindowMonitor(monitor int) {
|
||||
m := monitors[monitor].m
|
||||
|
||||
// Ignore if it is the same monitor.
|
||||
if m == u.window.GetMonitor() {
|
||||
if m == u.currentMonitor() {
|
||||
return
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user