-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Revert renaming Scale$trans
to Scale$transformation
#5626
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
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
I think you need to start from scratch because you've confused yourself about what to rename where. There is a method I think basically it is only the field that should be renamed, the |
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.
See previous comment
I'm not sure I'm following along here. The following bit has me confused:
I am not touching the |
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
Thanks for the reviews Thomas! |
* revert renaming `Scale$trans` to `Scale$transformation` * use `get_transformation()` more consistently * use `get_transformation()` for y in function stat
This PR to the RC aims to fix some reverse dependency problems.
To briefly describe the problem: people are using
foo <- Scale$trans
all over their code. We have removed theScale$trans
field in #5566, in favour of theScale$transformation
field, which broke all that code. This PR reverses the renaming of the field specifically.I think the
Scale$get_transformation()
getter is still useful, so I left it in. It is mostly useful for view scales where the transformation is hidden in theViewScale$scale$trans
.