-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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 skin element "PlayerFlag" responding to clicks/hovers #25530
Conversation
The tooltip still shows.
The BaseDrawableFlag is used in a BaseUpdateableFlag so the tooltip is not shown, the ClickableUpdateableFlag still shows the tooltip.
That's a lot of over-engineering. Why not just introduce a bool parameter on |
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.
As above.
Why not just disable subtree input on the skinnable component and avoid all complexity? |
That sounds fine as well. |
I'll undo the changes and do that. |
Done. Should work now without overengineering. |
Fixes #25529.
Added BaseUpdateableFlag and BaseDrawableFlag classes that don't have tooltips or click functionality.
The UpdateableFlag class was renamed to ClickableUpdateableFlag.