Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CodeXCavator/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
using System.IO.IsolatedStorage;
using System.IO;
using CodeXCavator.Engine.Interfaces;
using System.Globalization;

//This file has been significantly modified by Ben van der Merwe
//
Expand Down Expand Up @@ -149,7 +150,7 @@ void Window_Closing(object sender, EventArgs e)
using (StreamWriter writer = new StreamWriter(stream))
{
// Write restore bounds value to file
writer.WriteLine(this.RestoreBounds.ToString());
writer.WriteLine(this.RestoreBounds.ToString(CultureInfo.InvariantCulture));
}
}
catch { }
Expand Down