Fix window size saving to config incorrectly.

This commit is contained in:
Dean Herbert 2016-10-23 01:35:11 +09:00
parent 01fd7b82e8
commit bd1a1644fd
1 changed files with 2 additions and 2 deletions

View File

@ -194,8 +194,8 @@ public override bool Invalidate(Invalidation invalidation = Invalidation.All, Dr
if (Parent != null)
{
Config.Set(OsuConfig.Width, Size.X);
Config.Set(OsuConfig.Height, Size.Y);
Config.Set(OsuConfig.Width, DrawSize.X);
Config.Set(OsuConfig.Height, DrawSize.Y);
}
return true;
}