Loads the log from the file selected by the user with the file pickup dialog.
()
| 704 | /// Loads the log from the file selected by the user with the file pickup dialog. |
| 705 | /// </summary> |
| 706 | public void LoadLogFile() |
| 707 | { |
| 708 | if (FileSystem.ShowOpenFileDialog(null, Path.Combine(Globals.ProjectFolder, "Logs"), null, false, "Pick a log file to load", out var files)) |
| 709 | return; |
| 710 | if (files != null && files.Length > 0) |
| 711 | { |
| 712 | LoadLogFile(files[0]); |
| 713 | } |
| 714 | } |
| 715 | |
| 716 | /// <summary> |
| 717 | /// Loads the log file. |
nothing calls this directly
no test coverage detected