diff --git a/MainForm.pas b/MainForm.pas index 2414b2e..44dd8bd 100644 --- a/MainForm.pas +++ b/MainForm.pas @@ -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;