From 8b788ab89d2dd9ec137d0412fcc5ad2a41510b52 Mon Sep 17 00:00:00 2001 From: "Daniel S. Billing" Date: Thu, 14 Apr 2022 23:11:22 +0200 Subject: [PATCH] Adjusted the buttons on the Game Jolt login to fit the font --- P3D/Network/GameJolt/LogInScreen.vb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/P3D/Network/GameJolt/LogInScreen.vb b/P3D/Network/GameJolt/LogInScreen.vb index ab0abd51d..a824b82a4 100644 --- a/P3D/Network/GameJolt/LogInScreen.vb +++ b/P3D/Network/GameJolt/LogInScreen.vb @@ -48,15 +48,15 @@ Namespace GameJolt Token.IsPassword = True Me.LogInButton = New JoltButton("Log in", FontManager.MainFont, New Color(68, 68, 68), New Color(204, 255, 0)) - LogInButton.Size = New Size(100, 30) + LogInButton.Size = New Size(90, 30) LogInButton.SetDelegate(AddressOf LogIn) Me.CloseButton = New JoltButton("Close", FontManager.MainFont, New Color(68, 68, 68), New Color(204, 255, 0)) - CloseButton.Size = New Size(100, 30) + CloseButton.Size = New Size(90, 30) CloseButton.SetDelegate(AddressOf Me.Close) Me.CreateAccountButton = New JoltButton("Create Account", FontManager.MainFont, New Color(68, 68, 68), New Color(204, 255, 0)) - CreateAccountButton.Size = New Size(180, 30) + CreateAccountButton.Size = New Size(200, 30) CreateAccountButton.SetDelegate(AddressOf Me.CreateAccount) Me.OkButton = New JoltButton("OK", FontManager.MainFont, New Color(68, 68, 68), New Color(204, 255, 0))