You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TL;DR - The following documentation is inaccurate. It implies that .append applies the applicable style, then rmq_created, rmq_appended, rmq_build. Source diving reveals that the order is actually rmq_created, rmq_build, rmq_appended, then the style is applied.
Either the documentation or the code should change. I'm happy to do the later.
if created
new_view.rmq_did_create(self.wrap(new_view))
new_view.rmq_created
end
new_view.rmq_build
new_view.rmq_appended if appended
if self.stylesheet
apply_style_to_view(new_view, style) if style
end
The text was updated successfully, but these errors were encountered:
TL;DR - The following documentation is inaccurate. It implies that .append applies the applicable style, then rmq_created, rmq_appended, rmq_build. Source diving reveals that the order is actually rmq_created, rmq_build, rmq_appended, then the style is applied.
Either the documentation or the code should change. I'm happy to do the later.
Current documentation:
Current implementation of append:
Current implementation of add_subview:
The text was updated successfully, but these errors were encountered: