Is Double click on an EditorButton supposed to fire EditorButtonClick twice?
Any way to prevent this?
Thank you,
Trausti
Button controls in general do not support DoubleClick. And controls that do support DoubleClick also fire Click twice when you double click on them.
The control cannot know that you are going to click on it again after the first click, so it has no way to prevent the events from firing.
So to answer your question, this is correct behavior, and there is no way to prevent it.