diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee index 99c3da3662..adaedd458f 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/spell-check/SpellCheckManager.coffee @@ -29,7 +29,8 @@ define [ @openContextMenu(e.domEvent) $(document).on "click", (e) => - @closeContextMenu(e) + if e.which != 3 # Ignore if this was a right click + @closeContextMenu(e) return true @$scope.replaceWord = (highlight, suggestion) =>