mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix shift + enter to go to previous find entry in profiler (#8615)
This commit is contained in:
@@ -330,7 +330,7 @@ export class FindWidget extends Widget implements IOverlayWidget, IHorizontalSas
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (e.equals(KeyMod.Shift | KeyCode.Enter)) {
|
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();
|
e.preventDefault();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user