Added MinimumSize so toolbar always fits

This commit is contained in:
Jaex 2017-10-24 02:50:42 +03:00
parent 0c36f82302
commit 6ee3e305d6

View file

@ -160,7 +160,8 @@ private void InitializeComponent()
Text = "ShareX - " + "Annotate"; // TODO: Translate
StartPosition = FormStartPosition.CenterScreen;
FormBorderStyle = FormBorderStyle.Sizable;
Size = new Size(900, 700);
Size = new Size(800, 600);
MinimumSize = new Size(800, 600);
WindowState = FormWindowState.Maximized;
ShowInTaskbar = true;
}