mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #86446 from reduz/transient-to-focused
Implement a `transient_to_focused` Window mode
This commit is contained in:
commit
03767fbf3b
12 changed files with 85 additions and 14 deletions
|
|
@ -127,6 +127,7 @@ private:
|
|||
|
||||
bool use_font_oversampling = false;
|
||||
bool transient = false;
|
||||
bool transient_to_focused = false;
|
||||
bool exclusive = false;
|
||||
bool wrap_controls = false;
|
||||
bool updating_child_controls = false;
|
||||
|
|
@ -316,6 +317,9 @@ public:
|
|||
void set_transient(bool p_transient);
|
||||
bool is_transient() const;
|
||||
|
||||
void set_transient_to_focused(bool p_transient_to_focused);
|
||||
bool is_transient_to_focused() const;
|
||||
|
||||
void set_exclusive(bool p_exclusive);
|
||||
bool is_exclusive() const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue