mirror of
https://github.com/docker/compose.git
synced 2025-07-22 13:14:29 +02:00
Merge pull request #9476 from maxcleme/9469-fix-flickering-prompt
fix: prevent flickering prompt when pulling same image from N services
This commit is contained in:
commit
285a9c94f7
@ -83,7 +83,10 @@ func (w *ttyWriter) Event(e Event) {
|
|||||||
last.Status = e.Status
|
last.Status = e.Status
|
||||||
last.Text = e.Text
|
last.Text = e.Text
|
||||||
last.StatusText = e.StatusText
|
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
|
w.events[e.ID] = last
|
||||||
} else {
|
} else {
|
||||||
e.startTime = time.Now()
|
e.startTime = time.Now()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user