We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0aef14 commit 2ffd80aCopy full SHA for 2ffd80a
src/vs/workbench/contrib/preferences/browser/settingsWidgets.ts
@@ -384,6 +384,12 @@ export abstract class AbstractListSettingWidget<TDataItem extends object> extend
384
this.listDisposables.add(disposableTimeout(() => rowElement.focus()));
385
}
386
387
+ this.listDisposables.add(DOM.addDisposableListener(rowElement, 'click', (e) => {
388
+ // There is a parent list widget, which is the one that holds the list of settings.
389
+ // Prevent the parent widget from trying to interpret this click event.
390
+ e.stopPropagation();
391
+ }));
392
+
393
return rowElement;
394
395
0 commit comments