Skip to content

Commit

Permalink
Merge branch 't/11568'
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jasiun committed Mar 14, 2014
2 parents eec6b82 + ca2a3b0 commit 4be02f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -14,6 +14,7 @@ Fixed Issues:
* [#11635](http://dev.ckeditor.com/ticket/11635): Fixed: Some attributes are not protected before content is passed through fix bin.
* [#11660](http://dev.ckeditor.com/ticket/11660): [IE] Fixed: Content of a table is lost when there is some extra markup inside a table.
* [#11641](http://dev.ckeditor.com/ticket/11641): Fixed: Switching between modes in framed editor removes content styles for inline editor.
* [#11568](http://dev.ckeditor.com/ticket/11568): Fixed: Style list does not enable on selection change.

## CKEditor 4.3.3

Expand Down
3 changes: 2 additions & 1 deletion plugins/richcombo/plugin.js
Expand Up @@ -174,9 +174,10 @@ CKEDITOR.plugins.add( 'richcombo', {
this.refresh();
}

// Update status when activeFilter, mode or readOnly changes.
// Update status when activeFilter, mode, selection or readOnly changes.
editor.on( 'activeFilterChange', updateState, this );
editor.on( 'mode', updateState, this );
editor.on( 'selectionChange', updateState, this );
// If this combo is sensitive to readOnly state, update it accordingly.
!this.readOnly && editor.on( 'readOnly', updateState, this );

Expand Down

0 comments on commit 4be02f3

Please sign in to comment.