Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
temporary fix for #1111
Browse files Browse the repository at this point in the history
  • Loading branch information
redmunds committed Jun 22, 2012
1 parent fef4547 commit d97938c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/command/Menus.js
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,10 @@ define(function (require, exports, module) {
editor.selectWordAt(editor.getCursorPos());

// Prevent menu from overlapping text by moving it down a little
e.pageY += 6;
// Temporarily backout this change for now to help mitigate issue #1111,
// which only happens if mouse is not over context menu. Better fix
// requires change to bootstrap, which is too risky for now.
//e.pageY += 6;
}

editor_cmenu.open(e);
Expand Down

0 comments on commit d97938c

Please sign in to comment.