I am doing a small project in Draw2d and GEF. I need to get the single click through performRequest() method. Currently I am getting double clicking through performRequest(). There I am checking request.getType()== open then it is double click. But for single click how do I check? Is it possible without mouse listener?
Asked
Active
Viewed 256 times
1 Answers
0
Single click is RequestConstants.REQ_SELECTION
.
Double click is RequestConstants.REQ_OPEN
.

vainolo
- 6,907
- 4
- 24
- 47
-
Right... fixing the answer – vainolo Aug 21 '14 at 07:51