fix(tui): stabilize live todo progress

This commit is contained in:
Brooklyn Nicholson 2026-04-26 15:55:38 -05:00
parent 1566f1eecc
commit f5552f92e2
14 changed files with 256 additions and 86 deletions

View file

@ -28,10 +28,6 @@ const TranscriptPane = memo(function TranscriptPane({
return (
<>
<Box flexDirection="column" flexShrink={0}>
<LiveTodoPanel />
</Box>
<ScrollBox flexDirection="column" flexGrow={1} flexShrink={1} ref={transcript.scrollRef} stickyScroll>
<Box flexDirection="column" paddingX={1}>
{transcript.virtualHistory.topSpacer > 0 ? <Box height={transcript.virtualHistory.topSpacer} /> : null}
@ -73,6 +69,10 @@ const TranscriptPane = memo(function TranscriptPane({
</Box>
</ScrollBox>
<Box flexDirection="column" flexShrink={0} paddingX={1}>
<LiveTodoPanel />
</Box>
<NoSelect flexShrink={0} marginLeft={1}>
<TranscriptScrollbar scrollRef={transcript.scrollRef} t={ui.theme} />
</NoSelect>