-
-
Notifications
You must be signed in to change notification settings - Fork 22k
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
Prevent connect scroll_to_paragraph
multiple times to class_desc
#92454
Conversation
@@ -2340,7 +2340,11 @@ void EditorHelp::_help_callback(const String &p_topic) { | |||
|
|||
if (class_desc->is_ready()) { | |||
// call_deferred() is not enough. | |||
if (class_desc->is_connected(SceneStringName(draw), callable_mp(class_desc, &RichTextLabel::scroll_to_paragraph))) { | |||
class_desc->disconnect(SceneStringName(draw), callable_mp(class_desc, &RichTextLabel::scroll_to_paragraph)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we really need to disconnect and reconnect again? Or maybe we can just do
if !connected -> connect
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, checking !is_connected
is how it's done usually.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the line
is not changed during multiple connect, then yes. I will take a look more closely.
Update: It controls which line to scroll to, IMHO it should favor the latter one, so disconnect and connect again with new line
seems more reasonable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I missed the argument binding, indeed. Makes sense, then.
64b3f75
to
b33811d
Compare
Thanks! |
Fixes #92405