summaryrefslogtreecommitdiffstats
path: root/editor/debugger/editor_debugger_inspector.cpp
diff options
context:
space:
mode:
authorYuri Roubinsky <chaosus89@gmail.com>2022-01-12 14:53:32 +0300
committerYuri Roubinsky <chaosus89@gmail.com>2022-01-12 15:01:53 +0300
commit49db87ab3d9f4119ad73783301eb5d85d3511f7d (patch)
tree50ff14b0ca24b1aea1f19b09068475067616fc4d /editor/debugger/editor_debugger_inspector.cpp
parentd9f6e33663f365478150550acc3ec64aa9bb347c (diff)
downloadredot-engine-49db87ab3d9f4119ad73783301eb5d85d3511f7d.tar.gz
Add option to filter the stack variables of GDScript debugger
Diffstat (limited to 'editor/debugger/editor_debugger_inspector.cpp')
-rw-r--r--editor/debugger/editor_debugger_inspector.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/editor/debugger/editor_debugger_inspector.cpp b/editor/debugger/editor_debugger_inspector.cpp
index addb168e5f..ef3eb2d753 100644
--- a/editor/debugger/editor_debugger_inspector.cpp
+++ b/editor/debugger/editor_debugger_inspector.cpp
@@ -262,11 +262,18 @@ void EditorDebuggerInspector::add_stack_variable(const Array &p_array) {
variables->prop_values[type + n] = v;
variables->update();
edit(variables);
+
+ // To prevent constantly resizing when using filtering.
+ int size_x = get_size().x;
+ if (size_x > get_custom_minimum_size().x) {
+ set_custom_minimum_size(Size2(size_x, 0));
+ }
}
void EditorDebuggerInspector::clear_stack_variables() {
variables->clear();
variables->update();
+ set_custom_minimum_size(Size2(0, 0));
}
String EditorDebuggerInspector::get_stack_variable(const String &p_var) {