Skip to content

Commit

Permalink
Merge pull request #2851 from ckeditor/qm-button-fix
Browse files Browse the repository at this point in the history
QM button fix
  • Loading branch information
f1ames committed Feb 22, 2019
2 parents 6dd6fd0 + 88a852a commit 8b53603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tools.js
Expand Up @@ -1475,7 +1475,7 @@
return false;
}

if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 ) {
if ( CKEDITOR.env.ie && ( CKEDITOR.env.version < 9 || CKEDITOR.env.ie6Compat ) ) {
if ( domEvent.button === 4 ) {
return CKEDITOR.MOUSE_BUTTON_MIDDLE;
} else if ( domEvent.button === 1 ) {
Expand Down

1 comment on commit 8b53603

@Koraykanat
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.