Skip to content

Commit

Permalink
Whoops, need to redraw the images.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Jun 4, 2015
1 parent a3c4aa0 commit c9d7904
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions SonLVL/MainForm.cs
Expand Up @@ -8632,13 +8632,15 @@ private void pasteSolidsToolStripMenuItem_Click(object sender, EventArgs e)
ColInfo col = (ColInfo)Clipboard.GetData(typeof(ColInfo).AssemblyQualifiedName);
col.HeightMap.CopyTo(LevelData.ColArr1[CollisionSelector.SelectedIndex], 0);
LevelData.Angles[CollisionSelector.SelectedIndex] = col.Angle;
LevelData.RedrawCol(CollisionSelector.SelectedIndex, true);
CollisionSelector_SelectedIndexChanged(this, EventArgs.Empty);
}

private void clearSolidsToolStripMenuItem_Click(object sender, EventArgs e)
{
Array.Clear(LevelData.ColArr1[CollisionSelector.SelectedIndex], 0, 16);
LevelData.Angles[CollisionSelector.SelectedIndex] = 0;
LevelData.RedrawCol(CollisionSelector.SelectedIndex, true);
CollisionSelector_SelectedIndexChanged(this, EventArgs.Empty);
}
}
Expand Down

0 comments on commit c9d7904

Please sign in to comment.