diff --git a/src/ui/Forms/VideoControlsUndocked.cs b/src/ui/Forms/VideoControlsUndocked.cs index 9c3b2ada0..f41333338 100644 --- a/src/ui/Forms/VideoControlsUndocked.cs +++ b/src/ui/Forms/VideoControlsUndocked.cs @@ -66,14 +66,12 @@ namespace Nikse.SubtitleEdit.Forms private void VideoControlsUndocked_Shown(object sender, System.EventArgs e) { - if (Height < 320) - { - Height = 320; - } + Height = 340; if (panelContainer.Controls.Count > 0) { - panelContainer.Controls[0].Dock = DockStyle.Fill; + panelContainer.Controls[0].Anchor = AnchorStyles.Left | AnchorStyles.Top; + panelContainer.Controls[0].Height = 300; } } }