We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8caf240 commit 57fc873Copy full SHA for 57fc873
MathInterpreter/MathTab.cs
@@ -93,7 +93,7 @@ public static MathTab Open()
93
if (openFile.ShowDialog() != true)
94
return null;
95
96
- var tab = new MathTab(Path.GetFileName(openFile.FileName)) {_filePath = openFile.FileName};
+ var tab = new MathTab(Path.GetFileName(openFile.FileName)) {_savedBefore = true, _filePath = openFile.FileName};
97
98
tab._editor.Text = File.ReadAllText(openFile.FileName);
99
0 commit comments