You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix crash when GraphFrame sb_to_draw_panel is not a StyleBoxFlat
This commit is contained in:
@@ -118,7 +118,7 @@ void GraphFrame::_notification(int p_what) {
|
|||||||
sb_panel_flat->set_border_color(selected ? original_border_color : tint_color.lightened(0.3));
|
sb_panel_flat->set_border_color(selected ? original_border_color : tint_color.lightened(0.3));
|
||||||
draw_style_box(sb_panel_flat, body_rect);
|
draw_style_box(sb_panel_flat, body_rect);
|
||||||
} else if (sb_panel_texture.is_valid()) {
|
} else if (sb_panel_texture.is_valid()) {
|
||||||
sb_panel_texture = sb_panel_flat->duplicate();
|
sb_panel_texture = sb_panel_texture->duplicate();
|
||||||
sb_panel_texture->set_modulate(tint_color);
|
sb_panel_texture->set_modulate(tint_color);
|
||||||
draw_style_box(sb_panel_texture, body_rect);
|
draw_style_box(sb_panel_texture, body_rect);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user