Skip to content

Commit df9435d

Browse files
committed
Merge branch 't/9966'
2 parents a49965b + befd472 commit df9435d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ CKEditor 4 Changelog
1616
* [#9845](http://dev.ckeditor.com/ticket/9845): Fixed TAB navigation in the Link dialog and the Anchors option is used and no anchors are available.
1717
* [#9883](http://dev.ckeditor.com/ticket/9883): Maximizing was making the entire page editable with divarea based editors.
1818
* [#9940](http://dev.ckeditor.com/ticket/9940): With Firefox, navigating back to a page with the editor was making the entire page editable.
19+
* [#9966](http://dev.ckeditor.com/ticket/9966): Fixed: Unable to type square brackets with French keyboard layout. Changed magicline keystrokes.
1920

2021
## CKEditor 4.0.1
2122

plugins/magicline/plugin.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1693,10 +1693,10 @@
16931693
* // Changes keystroke to CTRL + ,
16941694
* CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + 188;
16951695
*
1696-
* @cfg {Number} [magicline_keystrokePrevious=CKEDITOR.CTRL + CKEDITOR.ALT + 219 (CTRL + ALT + [)]
1696+
* @cfg {Number} [magicline_keystrokePrevious=CKEDITOR.CTRL + CKEDITOR.SHIFT + 219 (CTRL + SHIFT + [)]
16971697
* @member CKEDITOR.config
16981698
*/
1699-
CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + CKEDITOR.ALT + 219; // CTRL + ALT + [
1699+
CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + CKEDITOR.SHIFT + 219; // CTRL + SHIFT + [
17001700

17011701
/**
17021702
* Defines default keystroke that access the closest unreachable focus space **after**
@@ -1705,10 +1705,10 @@ CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + CKEDITOR.ALT + 219
17051705
* // Changes keystroke to CTRL + .
17061706
* CKEDITOR.config.magicline_keystrokeNext = CKEDITOR.CTRL + 190;
17071707
*
1708-
* @cfg {Number} [magicline_keystrokeNext=CKEDITOR.CTRL + CKEDITOR.ALT + 221 (CTRL + ALT + ])]
1708+
* @cfg {Number} [magicline_keystrokeNext=CKEDITOR.CTRL + CKEDITOR.SHIFT + 221 (CTRL + SHIFT + ])]
17091709
* @member CKEDITOR.config
17101710
*/
1711-
CKEDITOR.config.magicline_keystrokeNext = CKEDITOR.CTRL + CKEDITOR.ALT + 221; // CTRL + ALT + ]
1711+
CKEDITOR.config.magicline_keystrokeNext = CKEDITOR.CTRL + CKEDITOR.SHIFT + 221; // CTRL + SHIFT + ]
17121712

17131713
/**
17141714
* Defines box color. The color may be adjusted to enhance readability.

0 commit comments

Comments
 (0)