You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Fix #32263 - Hide Console Window stores opposite value
This commit is contained in:
@@ -2519,7 +2519,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
|
|||||||
|
|
||||||
bool was_visible = OS::get_singleton()->is_console_visible();
|
bool was_visible = OS::get_singleton()->is_console_visible();
|
||||||
OS::get_singleton()->set_console_visible(!was_visible);
|
OS::get_singleton()->set_console_visible(!was_visible);
|
||||||
EditorSettings::get_singleton()->set_setting("interface/editor/hide_console_window", !was_visible);
|
EditorSettings::get_singleton()->set_setting("interface/editor/hide_console_window", was_visible);
|
||||||
} break;
|
} break;
|
||||||
case EDITOR_SCREENSHOT: {
|
case EDITOR_SCREENSHOT: {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user