diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-21 23:43:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-21 23:43:16 +0200 |
commit | 05a0a68c72cc16c443301398ab93e8d838401ac0 (patch) | |
tree | 08043a3425afdb0937d5bf6f96270abe499ea17c /core | |
parent | 10cf5ac0ff5d524c4ef8268f893485a5f53132ac (diff) | |
parent | ad504b926f9a0cfabde78254f6a4b40901cb8592 (diff) |
Merge pull request #24448 from lukad/toggle-system-console
Add option to toggle console window
Diffstat (limited to 'core')
-rw-r--r-- | core/os/os.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/os/os.h b/core/os/os.h index 514e1e2ad3..1b19ddff26 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -222,6 +222,8 @@ public: virtual bool is_window_maximized() const { return true; } virtual void set_window_always_on_top(bool p_enabled) {} virtual bool is_window_always_on_top() const { return false; } + virtual void set_console_visible(bool p_enabled) {} + virtual bool is_console_visible() const { return false; } virtual void request_attention() {} virtual void center_window(); |