From 99c473cdf687abd9f084297409cc0fc7b7aceaa9 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 10 Dec 2019 07:33:49 -0800 Subject: [PATCH] Fix shift + enter to go to previous find entry in profiler (#8615) --- .../workbench/contrib/profiler/browser/profilerFindWidget.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/contrib/profiler/browser/profilerFindWidget.ts b/src/sql/workbench/contrib/profiler/browser/profilerFindWidget.ts index 764892b122..b0305db79d 100644 --- a/src/sql/workbench/contrib/profiler/browser/profilerFindWidget.ts +++ b/src/sql/workbench/contrib/profiler/browser/profilerFindWidget.ts @@ -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; }