e4c / EclipseCommander

Open-source file manager built on the Eclipse 4 application platform.
Eclipse Public License 1.0
2 stars 1 forks source link

double click in the table #22

Closed webcane closed 10 years ago

webcane commented 10 years ago

implement d-click in the table -> open dir table entry. see #16

webcane commented 10 years ago

add ui bindings for double click for body region

// added NoOpMouseAction on single click because of Bug 428901
    uiBindingRegistry.registerFirstSingleClickBinding(
        MouseEventMatcher.bodyLeftClick(SWT.NONE),
        new NoOpMouseAction());

    uiBindingRegistry.registerDoubleClickBinding(
        MouseEventMatcher.bodyLeftClick(SWT.NONE), action);