Skip to content

Commit cce1107

Browse files
author
Piotr Jasiun
committed
Merge branch 't/11793b'
2 parents 997eff8 + 42e3c2a commit cce1107

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Fixed Issues:
2121
* [#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.
2222
* [#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`.
2323
* [#11798](http://dev.ckeditor.com/ticket/11798): Fixed: Inserting non-editable element inside a table cell breaks the table badly.
24+
* [#11793](http://dev.ckeditor.com/ticket/11793): Fixed: Drop down is not "on" when clicking it while editor is blurred.
2425

2526
Other changes:
2627

plugins/richcombo/plugin.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ CKEDITOR.plugins.add( 'richcombo', {
160160
};
161161

162162
function updateState() {
163+
// Don't change state while richcombo is active (#11793).
164+
if ( this.getState() == CKEDITOR.TRISTATE_ON )
165+
return;
166+
163167
var state = this.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED;
164168

165169
if ( editor.readOnly && !this.readOnly )

0 commit comments

Comments
 (0)