|
@@ -47,13 +47,20 @@ namespace vStation.Presentation
|
|
|
private void OnLoaded(object sender, RoutedEventArgs e)
|
|
|
{
|
|
|
ShowManagemenInBackend();
|
|
|
- StudyAnalysis.IsEnabled = false;
|
|
|
+ if (URMConfig.PipeLineReady)
|
|
|
+ {
|
|
|
+ Logger.WriteLineInfo($"Pipe line is ready");
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ StudyAnalysis.IsEnabled = false;
|
|
|
+ }
|
|
|
URMConfig.PipeLineCreated += PipeLineCreated;
|
|
|
}
|
|
|
|
|
|
private void PipeLineCreated(object sender, EventArgs e)
|
|
|
{
|
|
|
Dispatcher.Invoke(() => {
|
|
|
+ Logger.WriteLineInfo($"Pipe line created inable the study analysis");
|
|
|
StudyAnalysis.IsEnabled = true;
|
|
|
});
|
|
|
}
|