Skip to content

Commit

Permalink
Скорректировать стиль
Browse files Browse the repository at this point in the history
  • Loading branch information
vlastroG committed Nov 14, 2024
1 parent 46086d5 commit 53ae98c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ public string Save(ProjectConfig config, Document document) {
saveWindow.AddExtension = true;
saveWindow.Filter = "OpeningConfig |*.json";
saveWindow.FilterIndex = 1;
if(!saveWindow.ShowDialog(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "Настройки заданий на отверстия")) {
if(!saveWindow.ShowDialog(
Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "Настройки заданий на отверстия")) {
throw new OperationCanceledException();
}
var configSaver = new ConfigSaver(document);
Expand Down

0 comments on commit 53ae98c

Please sign in to comment.