summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/layout/container.go
diff options
context:
space:
mode:
authorKujtim Hoxha <[email protected]>2025-04-18 20:17:38 +0200
committerKujtim Hoxha <[email protected]>2025-04-21 13:42:27 +0200
commit333ea6ec4b2abfc2c1a9c3f6b0918ca5d296347f (patch)
treee0d456417368e8716c81ee43b82be3d6ed39c59e /internal/tui/layout/container.go
parent05d0e86f10369fd0e51a924ac88029fb92591499 (diff)
downloadopencode-333ea6ec4b2abfc2c1a9c3f6b0918ca5d296347f.tar.gz
opencode-333ea6ec4b2abfc2c1a9c3f6b0918ca5d296347f.zip
implement patch, update ui, improve rendering
Diffstat (limited to 'internal/tui/layout/container.go')
-rw-r--r--internal/tui/layout/container.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/tui/layout/container.go b/internal/tui/layout/container.go
index c86d954ea..fdb9ab403 100644
--- a/internal/tui/layout/container.go
+++ b/internal/tui/layout/container.go
@@ -86,7 +86,7 @@ func (c *container) View() string {
return style.Render(c.content.View())
}
-func (c *container) SetSize(width, height int) {
+func (c *container) SetSize(width, height int) tea.Cmd {
c.width = width
c.height = height
@@ -113,8 +113,9 @@ func (c *container) SetSize(width, height int) {
// Set content size with adjusted dimensions
contentWidth := max(0, width-horizontalSpace)
contentHeight := max(0, height-verticalSpace)
- sizeable.SetSize(contentWidth, contentHeight)
+ return sizeable.SetSize(contentWidth, contentHeight)
}
+ return nil
}
func (c *container) GetSize() (int, int) {