diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-30 14:06:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-30 14:06:58 +0100 |
| commit | 1d7b69ebbc02fa566e2e2a62b231b44a39f5a2c2 (patch) | |
| tree | 530174f93a8268ec7f49769f1f800e53894ea60f /editor/plugins | |
| parent | c64b07b264845a1cad8a500badc0407d593a453f (diff) | |
| parent | 58ae20f239792fed6ca041515914d2fef4198fc6 (diff) | |
| download | redot-engine-1d7b69ebbc02fa566e2e2a62b231b44a39f5a2c2.tar.gz | |
Merge pull request #24664 from SoIAS/graph_node_headers_statemachine-24458
Removed graph node headers from state machine nodes
Diffstat (limited to 'editor/plugins')
| -rw-r--r-- | editor/plugins/animation_state_machine_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/animation_state_machine_editor.cpp b/editor/plugins/animation_state_machine_editor.cpp index ee30294fe7..427b4eebee 100644 --- a/editor/plugins/animation_state_machine_editor.cpp +++ b/editor/plugins/animation_state_machine_editor.cpp @@ -572,8 +572,8 @@ void AnimationNodeStateMachineEditor::_state_machine_draw() { Ref<AnimationNodeStateMachinePlayback> playback = AnimationTreeEditor::get_singleton()->get_tree()->get(AnimationTreeEditor::get_singleton()->get_base_path() + "playback"); - Ref<StyleBox> style = get_stylebox("frame", "GraphNode"); - Ref<StyleBox> style_selected = get_stylebox("selectedframe", "GraphNode"); + Ref<StyleBox> style = get_stylebox("state_machine_frame", "GraphNode"); + Ref<StyleBox> style_selected = get_stylebox("state_machine_selectedframe", "GraphNode"); Ref<Font> font = get_font("title_font", "GraphNode"); Color font_color = get_color("title_color", "GraphNode"); |
