Skip to content

Commit

Permalink
fix broken "open to side" with mouse
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Jan 9, 2018
1 parent 278b78f commit 64f9e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/contrib/referenceSearch/referencesWidget.ts
Expand Up @@ -662,7 +662,7 @@ export class ReferenceWidget extends PeekViewWidget {
this._disposables.push(this._tree.onDidChangeSelection(event => onEvent(event.selection[0], event && event.payload && event.payload.origin === 'keyboard' ? 'goto' : 'show')));
this._disposables.push(controller.onDidFocus(element => onEvent(element, 'show')));
this._disposables.push(controller.onDidSelect(event => onEvent(event.focus, 'goto')));
this._disposables.push(controller.onDidOpenToSide(event => onEvent(event.focus, 'side')));
this._disposables.push(controller.onDidOpenToSide(element => onEvent(element, 'side')));

this._treeContainer = div.hide();
});
Expand Down

0 comments on commit 64f9e8a

Please sign in to comment.