Skip to content

Commit

Permalink
Correcting setting of dg.levelHeight.Minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
Clownacy committed May 30, 2015
1 parent bf2638f commit 8223ca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SonLVL/MainForm.cs
Expand Up @@ -5764,7 +5764,7 @@ private void resizeLevelToolStripMenuItem_Click(object sender, EventArgs e)
using (ResizeLevelDialog dg = new ResizeLevelDialog(CurrentTab != Tab.Background))
{
dg.levelWidth.Minimum = 1;
dg.levelWidth.Minimum = 1;
dg.levelHeight.Minimum = 1;
if (LevelData.LayoutFormat.IsResizable)
{
Size maxsize = LevelData.LayoutFormat.MaxSize;
Expand Down

0 comments on commit 8223ca8

Please sign in to comment.