149: Stored Client Layout doesn't persist information about maximized EVE client windows

This commit is contained in:
Anton Kasyanov
2019-06-10 21:29:07 +03:00
parent 0199f9f4a6
commit 4740b9185f
6 changed files with 34 additions and 11 deletions

View File

@@ -6,18 +6,23 @@ namespace EveOPreview.Configuration
{
}
public ClientLayout(int x, int y, int width, int height)
public ClientLayout(int x, int y, int width, int height, bool maximized)
{
this.X = x;
this.Y = y;
this.Width = width;
this.Height = height;
this.IsMaximized = maximized;
}
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public bool IsMaximized { get; set; }
}
}