149: Stored Client Layout doesn't persist information about maximized EVE client windows
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user