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

temporary fix for #1111 #1131

Merged
merged 1 commit into from
Jun 23, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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