Browse Source

fix: prevent flickering prompt when pulling same image from N services

Signed-off-by: Maxime CLEMENT <[email protected]>
Maxime CLEMENT 3 years ago
parent
commit
48b150beff
1 changed files with 4 additions and 1 deletions
  1. 4 1
      pkg/progress/tty.go

+ 4 - 1
pkg/progress/tty.go

@@ -83,7 +83,10 @@ func (w *ttyWriter) Event(e Event) {
 		last.Status = e.Status
 		last.Text = e.Text
 		last.StatusText = e.StatusText
-		last.ParentID = e.ParentID
+		// allow set/unset of parent, but not swapping otherwise prompt is flickering
+		if last.ParentID == "" || e.ParentID == "" {
+			last.ParentID = e.ParentID
+		}
 		w.events[e.ID] = last
 	} else {
 		e.startTime = time.Now()