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

fix runtime error #99

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/language.gd
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func reload_labels():


func reload_button(button, translation, label_node_name="Label"):
if button:
if button and button.has_node(label_node_name):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting, this error would indicate we still have old style button+label code somewhere - new buttons have integrated labels. It probably should apply reload_label() directly to button on else.

self.reload_label(button.get_node(label_node_name), translation)

func reload_label(label, translation):
Expand Down