aboutsummaryrefslogtreecommitdiff
path: root/src/lib.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.ts')
-rw-r--r--src/lib.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.ts b/src/lib.ts
index bbeb02a..2b0aabc 100644
--- a/src/lib.ts
+++ b/src/lib.ts
@@ -106,7 +106,7 @@ export type UiOptions = {
touchDevice: boolean,
breakpoint: Breakpoint,
// Other
- useReducedTree: boolean,
+ tree: 'trimmed' | 'images' | 'picked',
searchSuggLimit: number, // Max number of search suggestions
searchJumpMode: boolean,
tutorialSkip: boolean,
@@ -169,7 +169,7 @@ export function getDefaultUiOpts(lytOpts: LayoutOptions): UiOptions {
touchDevice: onTouchDevice(),
breakpoint: getBreakpoint(),
// Other
- useReducedTree: false,
+ tree: 'images',
searchSuggLimit: 10,
searchJumpMode: false,
tutorialSkip: false,