RCP: 0.7.8, create button activation failed with "i" word
When the “i” word is selected the “create” button is not activated.
Note: double-clicking the word works
Solution
The mouse DRAG was detected using only the distance between the mouse start position and end position (DRAG if dist >7).
But the “i” letter width is 2-3 pixels.
replace this custom drag detection with a SWT DragDetectListener- it is not a MouseDragEvent but a drag and drop listener
Replace the test with: dist != 0 AND (delta_time >120 OR dist > 4)
(from redmine: issue id 2040, created on 2017/02/16 by Matthieu Decorde)