microsoft/Terminal

Pane opening animation should not flash the default pane backdrop

Open

#7.365 aberto em 21 de ago. de 2020

Ver no GitHub
 (0 comments) (0 reactions) (0 assignees)C++ (3.212 forks)batch import
Area-UserInterfaceHelp WantedIssue-TaskPriority-3Product-Terminal

Métricas do repositório

Stars
 (35.764 stars)
Métricas de merge de PR
 (Mesclagem média 27d 19h) (24 fundiu PRs em 30d)

Description

follow up to #7364

When we open a new pane there's a brief time when you can see the pane background color as the new pane slides in. This is because we immediately create the Row/Col definitions, so even if we animate the first pane getting smaller, the first pane only has half the parent grid to render into.

A solution we could do is use the background brush from the first child as the background of the parent pane, until the animation is finished. Then revert back to transparent. This will make the backgroud behind the pane sliding in look like it's the same as the first pane. This won't really help for background images, but I think this is a reasonable compromise.

Guia do colaborador