-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Remove aztec Toolbar from Gutenberg editor fragment #8716
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
android:layout_width="match_parent"> | ||
|
||
<org.wordpress.aztec.toolbar.AztecToolbar | ||
android:id="@+id/formatting_toolbar" |
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.
It seems we can remove the layout_above
from the LinearLayout below too. While at it, it seems that the root RelativeLayout has no other children than the LinearLayout itself so, wdyt about removing one or the other?
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.
That's right! removed the now unneeded wrapping RelativeLayout
in afcf44a
|
||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:aztec="http://schemas.android.com/apk/res-auto" |
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.
Nit: let's remove the now unused namespace declaration, wdyt?
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.
👍 addressed in d16d1e9
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!
This PR removes the
AztecToolbar
fromGutenbergEditorFragment
.