summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-09-06 16:11:05 +0200
committerYuri Sizov <yuris@humnom.net>2023-09-06 19:40:43 +0200
commit512182f1475fe54833056e534320832a0bb2156a (patch)
treef030dc1d0038af9f5404d50fc1054186f97a3e43 /editor/editor_node.h
parent58126e479cd7341ec2ae306131e14868bcff06ca (diff)
downloadredot-engine-512182f1475fe54833056e534320832a0bb2156a.tar.gz
Add theme contexts to various parts of the editor
This change defines additional theme contexts for editor branches to prevent theme leaking between the default theme, the project theme, and the editor theme. - Both editor window and EditorNode define an editor-specific context with the editor theme and the default theme. - The 2D viewport defines a project-specific context with the project theme and the default theme. - Theme editor preview tabs define the default-only context with the default theme. Additionally, the default theme context now only includes the project theme for running projects (both export and debug). This prevents the project theme from leaking into the editor. This commit also does a little clean up on the theming aspects of the EditorNode.
Diffstat (limited to 'editor/editor_node.h')
-rw-r--r--editor/editor_node.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/editor_node.h b/editor/editor_node.h
index 4a529afc50..1119f6b896 100644
--- a/editor/editor_node.h
+++ b/editor/editor_node.h
@@ -295,7 +295,6 @@ private:
bool is_main_screen_editing = false;
PanelContainer *scene_root_parent = nullptr;
- Control *theme_base = nullptr;
Control *gui_base = nullptr;
VBoxContainer *main_vbox = nullptr;
OptionButton *renderer = nullptr;
@@ -525,6 +524,7 @@ private:
static void _resource_saved(Ref<Resource> p_resource, const String &p_path);
static void _resource_loaded(Ref<Resource> p_resource, const String &p_path);
+ void _update_theme(bool p_skip_creation = false);
void _build_icon_type_cache();
void _enable_pending_addons();
@@ -867,7 +867,6 @@ public:
Error export_preset(const String &p_preset, const String &p_path, bool p_debug, bool p_pack_only);
Control *get_gui_base() { return gui_base; }
- Control *get_theme_base() { return gui_base->get_parent_control(); }
void save_scene_to_path(String p_file, bool p_with_preview = true) {
if (p_with_preview) {