Merge pull request #98657 from ydeltastar/stay-sane-using-evaluator

Add editor setting to stop the bottom panel from switching to the Stack Trace
This commit is contained in:
Rémi Verschelde
2024-12-02 15:50:31 +01:00
3 changed files with 5 additions and 1 deletions

View File

@ -970,6 +970,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
/* Debugger/profiler */
EDITOR_SETTING_BASIC(Variant::BOOL, PROPERTY_HINT_NONE, "debugger/auto_switch_to_remote_scene_tree", false, "")
EDITOR_SETTING_BASIC(Variant::BOOL, PROPERTY_HINT_NONE, "debugger/auto_switch_to_stack_trace", true, "")
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_frame_history_size", 3600, "60,10000,1")
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_frame_max_functions", 64, "16,512,1")
EDITOR_SETTING(Variant::INT, PROPERTY_HINT_RANGE, "debugger/profiler_target_fps", 60, "1,1000,1")