diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-11-17 08:54:07 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-11-17 14:56:45 +0200 |
commit | 932174fedfaaab8804d0ea5c522cefe5626a77dc (patch) | |
tree | bacc202225c8ab930ac746d6db14ebcaef8cf9c5 /scene/main/window.h | |
parent | ad72de508363ca8d10c6b148be44a02cdf12be13 (diff) | |
download | redot-engine-932174fedfaaab8804d0ea5c522cefe5626a77dc.tar.gz |
[Editor] Add option to override editor UI layout direction.
Diffstat (limited to 'scene/main/window.h')
-rw-r--r-- | scene/main/window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/main/window.h b/scene/main/window.h index 8a54b6c7d3..1292f94f91 100644 --- a/scene/main/window.h +++ b/scene/main/window.h @@ -234,6 +234,8 @@ private: Ref<Shortcut> debugger_stop_shortcut; + static int root_layout_direction; + protected: virtual Rect2i _popup_adjust_rect() const { return Rect2i(); } virtual void _post_popup() {} @@ -260,6 +262,8 @@ public: NOTIFICATION_THEME_CHANGED = 32 }; + static void set_root_layout_direction(int p_root_dir); + void set_title(const String &p_title); String get_title() const; |