Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/11/11 20:57:29 (14 years ago)
Author:
ascheibe
Message:

#1233

  • fix pause/stop bug when serializing big experiments
  • use proper newlines
  • use GetPlugin(..) instead of GetPlugins()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/StateLogGanttChartListView.cs

    r5779 r6004  
    9393      DateTime until = to != null ? to.DateTime : upperLimit;
    9494      TimeSpan duration = until - from.DateTime;
    95       string tooltip = string.Format("State: {0}\nDuration: {1}\n{2} - {3}", from.State, duration, from.DateTime, until);
     95      string tooltip = string.Format("State: {0} " + Environment.NewLine + " Duration: {1} " + Environment.NewLine + " {2} - {3}", from.State, duration, from.DateTime, until);
    9696      if (!string.IsNullOrEmpty(from.Exception))
    97         tooltip += "\n" + from.Exception;
     97        tooltip += Environment.NewLine + from.Exception;
    9898      ganttChart.AddData(name, from.State.ToString(), from.DateTime, until, tooltip, false);
    9999    }
    100    
     100
    101101    protected override void SetEnabledStateOfControls() {
    102102      base.SetEnabledStateOfControls();
Note: See TracChangeset for help on using the changeset viewer.