Skip to content

Commit

Permalink
Fixed Fonts used in Labels
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOats committed Feb 13, 2016
1 parent 40728ff commit 4b479d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions GUISystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ public GUISystem ()
start_program.Click+=new EventHandler(Exec_Monster.beginfight);

displaybar.Size=new Size(200,30);
displaybar.Font=new Font("Verdana",10F,System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));

wonloss_status.Location=new Point(300,0);
wonloss_status.Size=new Size(200,30);
wonloss_status.Font=new Font("Verdana",10F,System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
Controls.Add(start_program);
Controls.Add(displaybar);
Controls.Add(wonloss_status);
Expand Down

0 comments on commit 4b479d6

Please sign in to comment.