Skip to content

Commit

Permalink
Some indentation fixes
Browse files Browse the repository at this point in the history
	modified:   Sonic-06-Mod-Manager/src/Environment3/RushInterface.Designer.cs
	modified:   Sonic-06-Mod-Manager/src/Environment3/RushInterface.cs
	modified:   Sonic-06-Mod-Manager/src/UnifyGlobalisation.cs
	modified:   Sonic-06-Mod-Manager/src/UnifyProgram.cs
  • Loading branch information
HyperPolygon64 committed Apr 19, 2020
1 parent 74609a0 commit 2a7a340
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Sonic-06-Mod-Manager/src/Environment3/RushInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ private async Task CheckForModUpdates(string searchByMod) {
// If no mods are added to the updates list - presumably, all of them are up to date
if (ListView_ModUpdates.Items.Count == 0)
UnifyMessenger.UnifyMessage.ShowDialog("All mods are up to date! Check back later...",
"Sonic '06 Mod Manager", MessageBoxButtons.OK, MessageBoxIcon.Information);
"Sonic '06 Mod Manager", MessageBoxButtons.OK, MessageBoxIcon.Information);
} else {
// Browse for mods directory
string browseMods = RequestPath.ModsDirectory();
Expand Down
1 change: 0 additions & 1 deletion Sonic-06-Mod-Manager/src/UnifyGlobalisation.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.IO;
using System.Reflection;
using Unify.Serialisers;

// Sonic '06 Mod Manager is licensed under the MIT License:
Expand Down
3 changes: 1 addition & 2 deletions Sonic-06-Mod-Manager/src/UnifyProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ static class Program
[STAThread]

static void Main(string[] args) {
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-US");
CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("en-US");
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("en-US");

#region Write required pre-requisites to the Tools directory
if (!Directory.Exists($"{ApplicationData}\\Unify\\Tools\\data\\"))
Expand Down

0 comments on commit 2a7a340

Please sign in to comment.