Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/15/10 03:13:43 (14 years ago)
Author:
swagner
Message:

Fixed exception which was thrown when hiding views while the execution time is updated (#1148)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/ExperimentView.cs

    r4070 r4216  
    141141        Invoke(new EventHandler(Content_ExecutionTimeChanged), sender, e);
    142142      else
    143         executionTimeTextBox.Text = Content.ExecutionTime.ToString();
     143        executionTimeTextBox.Text = Content == null ? "-" : Content.ExecutionTime.ToString();
    144144    }
    145145    private void Content_ExceptionOccurred(object sender, EventArgs<Exception> e) {
Note: See TracChangeset for help on using the changeset viewer.