If I click on the block with the ctrl key together, Blockly tries to show the context menu. This behavious happens because the condition in the method below:
Blockly.isRightButton = function(e) {
// Control-clicking in WebKit on Mac OS X fails to change button to 2.
return e.button == 2 || e.ctrlKey;
};
I want to code a multiple blocks selection and afterwards Ctrl+C and Ctrl+V. Generally, the programs use the Ctrl key to select separate objects, and because this I also want to do the same feature.
Really, that is no matter to solve this right button problem with WebKit on Mac OS X ?
Adilson