Skip to content

Commit

Permalink
Merge branch 't/11793b'
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jasiun committed May 8, 2014
2 parents 997eff8 + 42e3c2a commit cce1107
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -21,6 +21,7 @@ Fixed Issues:
* [#11788](http://dev.ckeditor.com/ticket/11788): Fixed: It is not possible to change language back to undefined in [Code Snippet](http://ckeditor.com/addon/codesnippet) dialog.
* [#11788](http://dev.ckeditor.com/ticket/11788): Fixed: [Filter](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.filter) rules are not applied inside elements with `contenteditable` attribute set to `true`.
* [#11798](http://dev.ckeditor.com/ticket/11798): Fixed: Inserting non-editable element inside a table cell breaks the table badly.
* [#11793](http://dev.ckeditor.com/ticket/11793): Fixed: Drop down is not "on" when clicking it while editor is blurred.

Other changes:

Expand Down
4 changes: 4 additions & 0 deletions plugins/richcombo/plugin.js
Expand Up @@ -160,6 +160,10 @@ CKEDITOR.plugins.add( 'richcombo', {
};

function updateState() {
// Don't change state while richcombo is active (#11793).
if ( this.getState() == CKEDITOR.TRISTATE_ON )
return;

var state = this.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED;

if ( editor.readOnly && !this.readOnly )
Expand Down

0 comments on commit cce1107

Please sign in to comment.