From e9d6b70de9a1a0c5c0ef6f204c8a9cad36bf8160 Mon Sep 17 00:00:00 2001 From: Uladzimir Karpenka Date: Thu, 30 Apr 2026 10:47:11 +0300 Subject: [PATCH] fix --- MainForm.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MainForm.pas b/MainForm.pas index cf9b33f..856b21e 100644 --- a/MainForm.pas +++ b/MainForm.pas @@ -1665,7 +1665,7 @@ begin PanelSep.BevelOuter := bvNone; PanelSep.ParentColor := False; PanelSep.Color := TColor($00606060); - PanelSep.SetBounds(0, PanelToolbar.Height + 30, ClientWidth, 2); + PanelSep.SetBounds(16, PanelToolbar.Height + 30, ClientWidth - 32, 2); // Большой S-метр — на главной форме поверх двух панелей // S-метр: Parent=Self, перекрывает Toolbar+SpanButtons вертикально @@ -1941,7 +1941,7 @@ begin FreqTextW + VFO_FREQ_LEFT_PAD + VFO_FREQ_RIGHT_PAD, TOP_VFO_FREQ_H); if PanelSep <> nil then - PanelSep.SetBounds(0, PanelToolbar.Height + 30, ClientWidth, 2); + PanelSep.SetBounds(16, PanelToolbar.Height + 30, ClientWidth - 32, 2); PanelTopVfoGroup.BringToFront; end;