fix(ui): поле ввода композитора в центр (не за край окна)
Some checks failed
CI / test (push) Failing after 1m14s
CI / build-and-package (amd64, linux) (push) Failing after 1m4s
CI / build-and-package (amd64, windows) (push) Successful in 31s

This commit is contained in:
ki.sagidullin
2026-08-21 20:41:28 +05:00
parent 37cc29e4cd
commit ee76f9d89f

View File

@@ -46,7 +46,7 @@ func (p *ChatPanel) Composer() fyne.CanvasObject {
widget.NewButton("Пропустить", func() { if p.commands != nil { p.commands.Skip() } }), widget.NewButton("Пропустить", func() { if p.commands != nil { p.commands.Skip() } }),
widget.NewButton("Отмена", func() { if p.commands != nil { p.commands.Cancel() } }), widget.NewButton("Отмена", func() { if p.commands != nil { p.commands.Cancel() } }),
) )
return container.NewBorder(nil, nil, cmdBar, p.input, nil) return container.NewBorder(nil, nil, cmdBar, nil, p.input)
} }
// SetTranscript заменяет содержимое диалога (спец 12.12). // SetTranscript заменяет содержимое диалога (спец 12.12).