Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/base/browser/ui/table/tableWidget.ts')
-rw-r--r--src/vs/base/browser/ui/table/tableWidget.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vs/base/browser/ui/table/tableWidget.ts b/src/vs/base/browser/ui/table/tableWidget.ts
index 03f6f284785..7f1d0560335 100644
--- a/src/vs/base/browser/ui/table/tableWidget.ts
+++ b/src/vs/base/browser/ui/table/tableWidget.ts
@@ -265,8 +265,8 @@ export class Table<TRow> implements ISpliceable<TRow>, IThemable, IDisposable {
this.list.layout(listHeight, width);
}
- toggleKeyboardNavigation(): void {
- this.list.toggleKeyboardNavigation();
+ triggerTypeNavigation(): void {
+ this.list.triggerTypeNavigation();
}
style(styles: ITableStyles): void {