mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Fixed window_can_draw of DisplayServerWindows
This commit is contained in:
parent
ac47e1d3e5
commit
6abd842a5a
@ -1119,7 +1119,7 @@ bool DisplayServerWindows::window_can_draw(WindowID p_window) const {
|
||||
|
||||
ERR_FAIL_COND_V(!windows.has(p_window), false);
|
||||
const WindowData &wd = windows[p_window];
|
||||
return wd.minimized;
|
||||
return !wd.minimized;
|
||||
}
|
||||
|
||||
bool DisplayServerWindows::can_any_window_draw() const {
|
||||
|
Loading…
Reference in New Issue
Block a user