Merge pull request #86446 from reduz/transient-to-focused

Implement a `transient_to_focused` Window mode
This commit is contained in:
Rémi Verschelde 2024-01-15 13:25:00 +01:00
commit 03767fbf3b
No known key found for this signature in database
GPG key ID: C3336907360768E1
12 changed files with 85 additions and 14 deletions

View file

@ -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;