Skip to content

Commit

Permalink
some UI scaling improvements (#1303)
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Mar 11, 2023
1 parent b724d76 commit ba8a5a3
Show file tree
Hide file tree
Showing 6 changed files with 267 additions and 225 deletions.
184 changes: 111 additions & 73 deletions ARKBreedingStats/CreatureBox.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ARKBreedingStats/CreatureInfoInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ public bool ShowSaveButton
set
{
btSaveChanges.Visible = value;
btAdd2Library.Size = new Size((value ? 120 : 250), 37);
btAdd2Library.Location = new Point(value ? 136 : 6, btAdd2Library.Location.Y);
btAdd2Library.Size = new Size((value ? Width / 2 : Width) - 10, btAdd2Library.Size.Height);
btAdd2Library.Location = new Point(value ? Width / 2 + 6 : 6, btAdd2Library.Location.Y);
}
}

Expand Down
24 changes: 12 additions & 12 deletions ARKBreedingStats/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ba8a5a3

Please sign in to comment.