fix(ui): close DMR step panel layout gap

This commit is contained in:
2026-07-14 20:54:38 +03:00
parent 62e663baf5
commit a880ed0e6c
+5 -1
View File
@@ -7325,7 +7325,11 @@ begin
if PanelBands = nil then Exit;
Y := PanelBands.Top + PanelBands.Height + 2;
PanelMode.Top := Y; Y := Y + PanelMode.Height + 2;
PanelFilter.Top := Y; Y := Y + PanelFilter.Height + 2;
if PanelFilter.Visible then
begin
PanelFilter.Top := Y;
Y := Y + PanelFilter.Height + 2;
end;
if (PanelFMStep <> nil) and PanelFMStep.Visible then
begin
PanelFMStep.Top := Y; Y := Y + PanelFMStep.Height + 2;