Make writes always happen
I might be crazy, but I think I encountered a situation where I closed the form and my changes weren't saved, probably because the changesMade flag wasn't set properly -- disable the check for now until I figure out the bug
This commit is contained in:
parent
80a1265a32
commit
1b3f0f875a
|
@ -430,7 +430,7 @@ namespace ScriptToolGui
|
||||||
|
|
||||||
lock (changeLock)
|
lock (changeLock)
|
||||||
{
|
{
|
||||||
if (changesMade)
|
//if (changesMade)
|
||||||
{
|
{
|
||||||
using (StreamWriter sw = File.CreateText(Path.Combine(workingFolder, "m12-strings-english.txt")))
|
using (StreamWriter sw = File.CreateText(Path.Combine(workingFolder, "m12-strings-english.txt")))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue