mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #97884 from passivestar/list-variations
Add theme type variations for secondary Trees and ItemLists
This commit is contained in:
commit
9e259ef061
24 changed files with 35 additions and 0 deletions
|
@ -1922,6 +1922,7 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
|||
stack_dump->set_column_title(0, TTR("Stack Frames"));
|
||||
stack_dump->set_hide_root(true);
|
||||
stack_dump->set_v_size_flags(SIZE_EXPAND_FILL);
|
||||
stack_dump->set_theme_type_variation("TreeSecondary");
|
||||
stack_dump->connect("cell_selected", callable_mp(this, &ScriptEditorDebugger::_stack_dump_frame_selected));
|
||||
stack_vb->add_child(stack_dump);
|
||||
|
||||
|
@ -1957,6 +1958,7 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
|||
breakpoints_tree->set_allow_reselect(true);
|
||||
breakpoints_tree->set_allow_rmb_select(true);
|
||||
breakpoints_tree->set_hide_root(true);
|
||||
breakpoints_tree->set_theme_type_variation("TreeSecondary");
|
||||
breakpoints_tree->connect("item_mouse_selected", callable_mp(this, &ScriptEditorDebugger::_breakpoints_item_rmb_selected));
|
||||
breakpoints_tree->create_item();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue