Browse Source

ui: when switching to a collection, load context + 1 so more elements aren't instantly loaded below

Benton Edmondson 1 year ago
parent
commit
f72793f9ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ui/ui.go

+ 1 - 1
ui/ui.go

@@ -338,7 +338,7 @@ func (s *State) switchTo(item any) {
 			s.buffer = ""
 			s.output(s.view())
 		}
-		children, nextCollection, newBasepoint := narrowed.Harvest(uint(config.Parsed.Style.Context), 0)
+		children, nextCollection, newBasepoint := narrowed.Harvest(uint(config.Parsed.Style.Context + 1), 0)
 		s.h.Add(&Page{
 			basepoint: newBasepoint,
 			children:  nextCollection,