Browse Source

ui: don't re-switch to loading when already loading

Benton Edmondson 1 year ago
parent
commit
24e4fb8bf2
1 changed files with 5 additions and 3 deletions
  1. 5 3
      ui/ui.go

+ 5 - 3
ui/ui.go

@@ -328,9 +328,11 @@ func (s *State) switchTo(item any) {
 			frontier: narrowed,
 		})
 	case pub.Container:
-		s.mode = loading
-		s.buffer = ""
-		s.output(s.view())
+		if s.mode != loading {
+			s.mode = loading
+			s.buffer = ""
+			s.output(s.view())
+		}
 		children, nextCollection, newBasepoint := narrowed.Harvest(uint(s.config.Context), 0)
 		s.h.Add(&Page{
 			basepoint: newBasepoint,