aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/SaveDialogs/LoadGameDialog.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Histacom2/SaveDialogs/LoadGameDialog.cs')
-rw-r--r--Histacom2/SaveDialogs/LoadGameDialog.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Histacom2/SaveDialogs/LoadGameDialog.cs b/Histacom2/SaveDialogs/LoadGameDialog.cs
index 9cea1b9..683fb37 100644
--- a/Histacom2/SaveDialogs/LoadGameDialog.cs
+++ b/Histacom2/SaveDialogs/LoadGameDialog.cs
@@ -39,7 +39,7 @@ namespace Histacom2
private void button3_Click(object sender, EventArgs e)
{
- MessageBox.Show("Here you can control all your profiles! Use can open a profile by hovering over it and clicking 'Load Profile!'");
+ MessageBox.Show("Here, you can control all of your profiles! You can load a profile by hovering over it and clicking 'Load Profile!'");
}
private void LoadGameDialog_Load(object sender, EventArgs e)
@@ -50,6 +50,7 @@ namespace Histacom2
newItem.Tag = Path.GetFileName(dir);
newItem.Dock = DockStyle.Top;
Profiles.Controls.Add(newItem);
+ newItem.BorderStyle = BorderStyle.Fixed3D;
newItem.Show();
}
}