A r1959 change in ImageSelectorControl prevented inherited classes from showing properly in Visual Studio's designer.

Also made a bunch of methods static.
This commit is contained in:
MaxED 2014-05-20 09:09:28 +00:00
parent e6204be571
commit 8555d75cd2
55 changed files with 193 additions and 167 deletions

View file

@ -470,7 +470,7 @@ namespace CodeImp.DoomBuilder.Plugins.NodesViewer
/// <summary>
/// Crop a polygon by a split line
/// </summary>
private void CropPolygon(List<Vector2D> poly, Split split)
private static void CropPolygon(List<Vector2D> poly, Split split)
{
if(poly.Count == 0) return;
Vector2D prev = poly[poly.Count - 1];