From d97938cdcf68ec1083b1322becf6061ad9708495 Mon Sep 17 00:00:00 2001 From: Randy Edmunds Date: Fri, 22 Jun 2012 16:52:16 -0700 Subject: [PATCH] temporary fix for #1111 --- src/command/Menus.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/command/Menus.js b/src/command/Menus.js index 6bcf2123d9a..4bd435b68ca 100644 --- a/src/command/Menus.js +++ b/src/command/Menus.js @@ -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);