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.Core.Views/3.3/EngineView.cs

    r3904 r4216  
    9595        Invoke(new EventHandler(Content_ExecutionTimeChanged), sender, e);
    9696      else
    97         executionTimeTextBox.Text = Content.ExecutionTime.ToString();
     97        executionTimeTextBox.Text = Content == null ? "-" : Content.ExecutionTime.ToString();
    9898    }
    9999  }
Note: See TracChangeset for help on using the changeset viewer.