Skip to content

Commit 34919e1

Browse files
authored
Gutenberg/1.14.0 (#10543)
1 parent db13a52 commit 34919e1

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

RELEASE-NOTES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Post List: Unsaved changes are automatically backed up on all devices. On post opening, the app will let you choose which version you prefer.
1010
* Clicking on "Publish" on a private post sometimes published the post as public
1111
* Fixed a bunch of upload related issues
12+
* Block editor: Fix a link editing issue, where trying to add a empty link at the start of another link would remove the existing link.
1213

1314
13.3
1415
-----

libs/editor/WordPressEditor/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
ext {
8-
aztecVersion = 'v1.3.30'
8+
aztecVersion = 'v1.3.31'
99
}
1010

1111
dependencies {

libs/editor/WordPressEditor/src/main/java/org/wordpress/android/editor/GutenbergContainerFragment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public void setContent(String postContent) {
106106
public void toggleHtmlMode() {
107107
mHtmlModeEnabled = !mHtmlModeEnabled;
108108

109-
mWPAndroidGlueCode.toggleEditorMode();
109+
mWPAndroidGlueCode.toggleEditorMode(mHtmlModeEnabled);
110110
}
111111

112112
/**

0 commit comments

Comments
 (0)