From 5fdb8b02e33fbf25f348583c1312aba648c3a7e1 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 30 Mar 2021 15:32:16 +0200 Subject: [PATCH] Require editor restart after changing GUI custom theme or font The `restart_if_changed` project setting hint wasn't set correctly. (cherry picked from commit 07244241792e9ebe78f2e7d46a43c7dce74f4a41) --- scene/register_scene_types.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scene/register_scene_types.cpp b/scene/register_scene_types.cpp index 5c4ccbd386b..5fa9c2c1378 100644 --- a/scene/register_scene_types.cpp +++ b/scene/register_scene_types.cpp @@ -744,9 +744,9 @@ void register_scene_types() { bool default_theme_hidpi = GLOBAL_DEF("gui/theme/use_hidpi", false); ProjectSettings::get_singleton()->set_custom_property_info("gui/theme/use_hidpi", PropertyInfo(Variant::BOOL, "gui/theme/use_hidpi", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_RESTART_IF_CHANGED)); - String theme_path = GLOBAL_DEF("gui/theme/custom", ""); + String theme_path = GLOBAL_DEF_RST("gui/theme/custom", ""); ProjectSettings::get_singleton()->set_custom_property_info("gui/theme/custom", PropertyInfo(Variant::STRING, "gui/theme/custom", PROPERTY_HINT_FILE, "*.tres,*.res,*.theme", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_RESTART_IF_CHANGED)); - String font_path = GLOBAL_DEF("gui/theme/custom_font", ""); + String font_path = GLOBAL_DEF_RST("gui/theme/custom_font", ""); ProjectSettings::get_singleton()->set_custom_property_info("gui/theme/custom_font", PropertyInfo(Variant::STRING, "gui/theme/custom_font", PROPERTY_HINT_FILE, "*.tres,*.res,*.font", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_RESTART_IF_CHANGED)); Ref font;