Fix shift + enter to go to previous find entry in profiler (#8615)

This commit is contained in:
Charles Gagnon
2019-12-10 07:33:49 -08:00
committed by GitHub
parent 88b55d0e06
commit 99c473cdf6

View File

@@ -330,7 +330,7 @@ export class FindWidget extends Widget implements IOverlayWidget, IHorizontalSas
}
if (e.equals(KeyMod.Shift | KeyCode.Enter)) {
this._tableController.getAction(ACTION_IDS.FIND_NEXT).run().then(null, onUnexpectedError);
this._tableController.getAction(ACTION_IDS.FIND_PREVIOUS).run().then(null, onUnexpectedError);
e.preventDefault();
return;
}