Skip to content

Commit 55fc333

Browse files
authored
Merge pull request #14 from martinRenou/change_default_config
Put back default behavior for single click
2 parents d4724af + 403a3f1 commit 55fc333

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

schema/jupyterlab-unfold-settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "boolean",
88
"title": "Single Click To Unfold",
99
"description": "Whether a single click triggers an (un)fold.",
10-
"default": false
10+
"default": true
1111
}
1212
}
1313
}

src/unfold.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ export class DirTreeListing extends DirListing {
395395
}
396396
}
397397

398-
private _singleClickToUnfold = false;
398+
private _singleClickToUnfold = true;
399399
}
400400

401401
/**

0 commit comments

Comments
 (0)