-
Notifications
You must be signed in to change notification settings - Fork 28.5k
Add role check in SemanticsNode._isDifferentFromCurrentSemanticAnnotation function. #162578
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
Add role check in SemanticsNode._isDifferentFromCurrentSemanticAnnotation function. #162578
Conversation
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.
LGTM
@@ -2471,7 +2487,7 @@ class SemanticsNode with DiagnosticableTreeMixin { | |||
_areUserActionsBlocked != config.isBlockingUserActions || | |||
_headingLevel != config._headingLevel || | |||
_linkUrl != config._linkUrl || | |||
_linkUrl != config._linkUrl; |
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.
oops, nice catch. I made a copy paste error
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.
LGTM
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
@chunhtai @hannah-hyj, thanks a lot for the review! |
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
…icAnnotation function. (flutter/flutter#162578)
Fixes #162577
Description
role
check inSemanticsNode._isDifferentFromCurrentSemanticAnnotation
function.SemanticsNode.debugIsDirty
property to check in tests whether the node is marked as dirty.Pre-launch Checklist
///
).