-
-
Notifications
You must be signed in to change notification settings - Fork 918
avm2: Implement clone() method for flash.text.engine classes #21592
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
base: master
Are you sure you want to change the base?
Conversation
public function EastAsianJustifier(locale:String = "ja", lineJustification:String = "allButLast", justificationStyle:String = "pushInKinsoku") { | ||
super(locale, lineJustification); | ||
this.justificationStyle = justificationStyle; | ||
this._justificationStyle = justificationStyle; |
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.
Is there a reason for this change? Doing it this way means we'd need to duplicate the validation logic for justificationStyle
in the future
this.locale = locale; | ||
this.lineJustification = lineJustification; | ||
this._locale = locale; | ||
this._lineJustification = lineJustification; |
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.
Here too, for lineJustification
The original issue was found while testing the gui demo from alternativa demos package