@@ -173,20 +173,20 @@ registerEditorSettingMigration('quickSuggestions', (input, read, write) => {
173
173
174
174
// Sticky Scroll
175
175
176
- registerEditorSettingMigration ( 'editor. experimental.stickyScroll.enabled' , ( value , read , write ) => {
176
+ registerEditorSettingMigration ( 'experimental.stickyScroll.enabled' , ( value , read , write ) => {
177
177
if ( typeof value !== 'undefined' ) {
178
- write ( 'editor. experimental.stickyScroll.enabled' , undefined ) ;
179
- if ( typeof read ( 'editor. stickyScroll.enabled' ) === 'undefined' ) {
180
- write ( 'editor. stickyScroll.enabled' , ! ! value ) ;
178
+ write ( 'experimental.stickyScroll.enabled' , undefined ) ;
179
+ if ( typeof read ( 'stickyScroll.enabled' ) === 'undefined' ) {
180
+ write ( 'stickyScroll.enabled' , ! ! value ) ;
181
181
}
182
182
}
183
183
} ) ;
184
184
185
- registerEditorSettingMigration ( 'editor. experimental.stickyScroll.maxLineCount' , ( value , read , write ) => {
185
+ registerEditorSettingMigration ( 'experimental.stickyScroll.maxLineCount' , ( value , read , write ) => {
186
186
if ( typeof value !== 'undefined' ) {
187
- write ( 'editor. experimental.stickyScroll.maxLineCount' , undefined ) ;
188
- if ( typeof read ( 'editor. stickyScroll.maxLineCount' ) === 'undefined' ) {
189
- write ( 'editor. stickyScroll.maxLineCount' , ! ! value ) ;
187
+ write ( 'experimental.stickyScroll.maxLineCount' , undefined ) ;
188
+ if ( typeof read ( 'stickyScroll.maxLineCount' ) === 'undefined' ) {
189
+ write ( 'stickyScroll.maxLineCount' , value ) ;
190
190
}
191
191
}
192
192
} ) ;
0 commit comments