Skip to content

Commit 9446368

Browse files
committed
fixed default value
1 parent 3025c4a commit 9446368

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/list/browser/listService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ abstract class ResourceNavigator<T> extends Disposable {
444444

445445
this.openOnFocus = options?.openOnFocus ?? false;
446446
this.openOnSelection = options?.openOnSelection ?? true;
447-
this.openOnSingleClick = options?.openOnSingleClick ?? false;
447+
this.openOnSingleClick = options?.openOnSingleClick ?? true;
448448

449449
if (this.openOnFocus) {
450450
this._register(this.widget.onDidChangeFocus(e => this.onFocus(e.browserEvent)));

0 commit comments

Comments
 (0)