Skip to content

Commit

Permalink
removed floating windows/tooltips from Champions window - integrated …
Browse files Browse the repository at this point in the history
…this information into the window itself
  • Loading branch information
djrecipe committed Apr 11, 2016
1 parent 53a5c36 commit 5037a5f
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 218 deletions.
3 changes: 2 additions & 1 deletion RiotPls.Tools/GeneralSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public static void LoadWindowSettings(Form form)
if (row != null && row.Width != 0 && row.Height != 0)
{
form.Location = new Point(row.Left, row.Top);
form.Size = new Size(row.Width, row.Height);
if(form.FormBorderStyle == FormBorderStyle.Sizable || form.FormBorderStyle == FormBorderStyle.SizableToolWindow)
form.Size = new Size(row.Width, row.Height);
}
return;
}
Expand Down
Loading

0 comments on commit 5037a5f

Please sign in to comment.