How can i disable copy node

I want to disable copy node by Ctrl + Mouse drag.


Thanks in advance

Call JGoView.setInternalMouseActions(DnDConstants.ACTION_MOVE), if you are using Swing.

Or call JGoView.setInternalMouseActions(DND.DROP_MOVE), if you are using SWT.

Thank you. it works.