From ee76f9d89ffc5d42c24233a84277c333ffd95381 Mon Sep 17 00:00:00 2001 From: "ki.sagidullin" Date: Fri, 21 Aug 2026 20:41:28 +0500 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=D0=BF=D0=BE=D0=BB=D0=B5=20=D0=B2?= =?UTF-8?q?=D0=B2=D0=BE=D0=B4=D0=B0=20=D0=BA=D0=BE=D0=BC=D0=BF=D0=BE=D0=B7?= =?UTF-8?q?=D0=B8=D1=82=D0=BE=D1=80=D0=B0=20=D0=B2=20=D1=86=D0=B5=D0=BD?= =?UTF-8?q?=D1=82=D1=80=20(=D0=BD=D0=B5=20=D0=B7=D0=B0=20=D0=BA=D1=80?= =?UTF-8?q?=D0=B0=D0=B9=20=D0=BE=D0=BA=D0=BD=D0=B0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/ui/desktop/chat_panel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/desktop/chat_panel.go b/internal/ui/desktop/chat_panel.go index 8c9f007..4288b33 100644 --- a/internal/ui/desktop/chat_panel.go +++ b/internal/ui/desktop/chat_panel.go @@ -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.Cancel() } }), ) - return container.NewBorder(nil, nil, cmdBar, p.input, nil) + return container.NewBorder(nil, nil, cmdBar, nil, p.input) } // SetTranscript заменяет содержимое диалога (спец 12.12).