Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors when CanvasItemEditor updates #11460

Closed
groud opened this issue Sep 21, 2017 · 1 comment
Closed

Errors when CanvasItemEditor updates #11460

groud opened this issue Sep 21, 2017 · 1 comment

Comments

@groud
Copy link
Member

groud commented Sep 21, 2017

Master branch.

Godot sprays errors on the CanvasItemEditor, when updating:
2017-09-21-140659_630x260_scrot

Probably here since #11446.

@groud groud added this to the 3.0 milestone Sep 21, 2017
@marcelofg55
Copy link
Contributor

I'm guessing that we should add another NULL check at line 2696 _draw_locks_and_groups(editor->get_edited_scene(), transform); to prevent the error spamming thing. Can you try this:

if (editor->get_edited_scene()) {
    _draw_locks_and_groups(editor->get_edited_scene(), transform);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants