summaryrefslogtreecommitdiff
path: root/editor/plugins
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2021-12-29 23:31:13 +0300
committerYuri Sizov <yuris@humnom.net>2021-12-29 23:40:01 +0300
commitfad3138af7bbaee4bd7dea785657c84890411f0a (patch)
tree515825197139d9aa29d2bd483a8eb485ecc31b8a /editor/plugins
parent9f058674acebf9a7a0704cdbc26dc9f6d853b16e (diff)
Make the theme editor correctly stop updating after it was hidden
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/theme_editor_preview.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/editor/plugins/theme_editor_preview.cpp b/editor/plugins/theme_editor_preview.cpp
index 9a5ecd3802..2aec7b7145 100644
--- a/editor/plugins/theme_editor_preview.cpp
+++ b/editor/plugins/theme_editor_preview.cpp
@@ -36,6 +36,8 @@
#include "editor/editor_scale.h"
+constexpr double REFRESH_TIMER = 1.5;
+
void ThemeEditorPreview::set_preview_theme(const Ref<Theme> &p_theme) {
preview_content->set_theme(p_theme);
}
@@ -66,7 +68,7 @@ void ThemeEditorPreview::_refresh_interval() {
}
void ThemeEditorPreview::_preview_visibility_changed() {
- set_process(is_visible());
+ set_process(is_visible_in_tree());
}
void ThemeEditorPreview::_picker_button_cbk() {
@@ -200,7 +202,7 @@ void ThemeEditorPreview::_notification(int p_what) {
case NOTIFICATION_PROCESS: {
time_left -= get_process_delta_time();
if (time_left < 0) {
- time_left = 1.5;
+ time_left = REFRESH_TIMER;
_refresh_interval();
}
} break;