summaryrefslogtreecommitdiff
path: root/Penguloon/Controls
diff options
context:
space:
mode:
authoraldrikboy <aldrikboy@gmail.com>2017-12-25 14:07:42 +0100
committeraldrikboy <aldrikboy@gmail.com>2017-12-25 14:07:42 +0100
commit020fd61af37eaaac81d7b930be15f8c350f28b7d (patch)
tree213e59cc8a7b60c717a0ea05159ac8967e6f5c35 /Penguloon/Controls
parent3281eed3ffca3b4488335846430b231001aea753 (diff)
I dab everyday
Diffstat (limited to 'Penguloon/Controls')
-rw-r--r--Penguloon/Controls/IngameOptions.cs2
-rw-r--r--Penguloon/Controls/MessageBox.cs8
2 files changed, 5 insertions, 5 deletions
diff --git a/Penguloon/Controls/IngameOptions.cs b/Penguloon/Controls/IngameOptions.cs
index d6eda02..e5a6890 100644
--- a/Penguloon/Controls/IngameOptions.cs
+++ b/Penguloon/Controls/IngameOptions.cs
@@ -31,7 +31,7 @@ namespace Penguloon.Controls
this.BackgroundDisabled = ContentManager.GetTexture("UI/optionsMenuBackground");
Vector2 BtnSize = new Vector2(Size.X - 90, StaticUIValues.IngameUIPlayButtonHeight);
- Vector2 MsgBoxSize = new Vector2(900, 450);
+ Vector2 MsgBoxSize = new Vector2(900, 550);
BtnContinue = new Button(parentScene,
new Vector2(position.X + (Size.X / 2) - (BtnSize.X / 2), Position.Y + 50),
diff --git a/Penguloon/Controls/MessageBox.cs b/Penguloon/Controls/MessageBox.cs
index 6736132..861120e 100644
--- a/Penguloon/Controls/MessageBox.cs
+++ b/Penguloon/Controls/MessageBox.cs
@@ -27,10 +27,10 @@ namespace Penguloon.Controls
this.BackgroundDisabled = ContentManager.GetTexture("UI/msgBoxBackground");
this.Text = text;
- this.Font = ContentManager.GetFont("Fonts/GWENT/48");
- this.ForeColor = Color.White;
- this.BorderColor = Color.Black;
- this.BorderWidth = 2;
+ this.Font = ContentManager.GetFont("Fonts/GWENT/52");
+ this.ForeColor = Color.Gray;
+ this.BorderColor = Color.Gray;
+ this.BorderWidth = 0;
this.TextAllignment = TextAllignment.CenterTop;
this.PaddingTop = 35;