mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
fix(ui): stabilize rendering during terminal resize in alternate buffer (#15783)
Co-authored-by: Jacob Richman <jacob314@gmail.com>
This commit is contained in:
@@ -31,7 +31,8 @@ export const DefaultAppLayout: React.FC = () => {
|
||||
<Box
|
||||
flexDirection="column"
|
||||
width={width}
|
||||
height={isAlternateBuffer ? terminalHeight - 1 : undefined}
|
||||
height={isAlternateBuffer ? terminalHeight : undefined}
|
||||
paddingBottom={isAlternateBuffer ? 1 : undefined}
|
||||
flexShrink={0}
|
||||
flexGrow={0}
|
||||
overflow="hidden"
|
||||
|
||||
Reference in New Issue
Block a user