File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
WordPress/src/main/java/org/wordpress/android/ui/posts
libs/editor/WordPressEditor/src/main/java/org/wordpress/android/editor/gutenberg Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2293,7 +2293,7 @@ private GutenbergPropsBuilder getGutenbergPropsBuilder() {
2293
2293
boolean isFreeWPCom = mSite .isWPCom () && SiteUtils .onFreePlan (mSite );
2294
2294
boolean isWPComSite = mSite .isWPCom () || mSite .isWPComAtomic ();
2295
2295
2296
- boolean canViewEditorOnboarding = canViewEditorOnboarding () && !AppPrefs .hasLaunchedGutenbergEditor ();
2296
+ boolean enableEditorOnboarding = canViewEditorOnboarding () && !AppPrefs .hasLaunchedGutenbergEditor ();
2297
2297
2298
2298
return new GutenbergPropsBuilder (
2299
2299
mContactInfoBlockFeatureConfig .isEnabled () && SiteUtils .supportsContactInfoFeature (mSite ),
@@ -2308,7 +2308,7 @@ private GutenbergPropsBuilder getGutenbergPropsBuilder() {
2308
2308
postType ,
2309
2309
featuredImageId ,
2310
2310
themeBundle ,
2311
- canViewEditorOnboarding
2311
+ enableEditorOnboarding
2312
2312
);
2313
2313
}
2314
2314
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
ext. kotlin_ktx_version = ' 1.2.0'
8
8
ext. wordPressUtilsVersion = ' develop-bb54ee34c5fec5fa7375ce90a356adb5adbdcae0'
9
9
ext. detektVersion = ' 1.15.0'
10
- ext. gutenbergMobileVersion = ' develop-b316b2b49f57f08426f1a33418f28480cdc8787b '
10
+ ext. gutenbergMobileVersion = ' 3625-6f517e53550628c957a8ab043d763ad07cb5fb90 '
11
11
12
12
repositories {
13
13
google()
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ data class GutenbergPropsBuilder(
20
20
private val postType : String ,
21
21
private val featuredImageId : Int ,
22
22
private val editorTheme : Bundle ? ,
23
- private val canViewEditorOnboarding : Boolean
23
+ private val enableEditorOnboarding : Boolean
24
24
) : Parcelable {
25
25
fun build (activity : Activity , isHtmlModeEnabled : Boolean ) = GutenbergProps (
26
26
enableContactInfoBlock = enableContactInfoBlock,
@@ -38,6 +38,6 @@ data class GutenbergPropsBuilder(
38
38
translations = GutenbergUtils .getTranslations(activity),
39
39
isDarkMode = GutenbergUtils .isDarkMode(activity),
40
40
htmlModeEnabled = isHtmlModeEnabled,
41
- canViewEditorOnboarding = canViewEditorOnboarding
41
+ enableEditorOnboarding = enableEditorOnboarding
42
42
)
43
43
}
You can’t perform that action at this time.
0 commit comments