diff options
| author | Michael Webb <[email protected]> | 2019-04-03 21:26:02 -0500 |
|---|---|---|
| committer | Michael Webb <[email protected]> | 2019-04-03 21:26:02 -0500 |
| commit | cc322eeb8e1df9aaf1be7a88b980b820286bf972 (patch) | |
| tree | 6ece0f81a977d0a5620349469ddd620475e9eeae /Histacom2/SaveDialogs/LoadGameDialog.cs | |
| parent | 5b22de799a66e4f7a614815b80fe0c1bb76b44a7 (diff) | |
| download | histacom2-cc322eeb8e1df9aaf1be7a88b980b820286bf972.tar.gz histacom2-cc322eeb8e1df9aaf1be7a88b980b820286bf972.tar.bz2 histacom2-cc322eeb8e1df9aaf1be7a88b980b820286bf972.zip | |
Make achievements screen resize properly, make load screen look much better, other small adjustments
Diffstat (limited to 'Histacom2/SaveDialogs/LoadGameDialog.cs')
| -rw-r--r-- | Histacom2/SaveDialogs/LoadGameDialog.cs | 3 |
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(); } } |
