Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/12/11 18:04:25 (13 years ago)
Author:
ascheibe
Message:

#1233

  • fixed a bug in the Slave UI
  • finished renaming Webservice and Dao methods to be consistent with Job/Task naming
  • some cosmetic changes and project dependencies cleanups
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/LogView.cs

    r6734 r6743  
    6969    #region Event Handlers
    7070    void Content_SlaveMessageLogged(object sender, EventArgs<string> e) {
    71       txtLog.AppendText(e.Value + Environment.NewLine);
     71      if (txtLog.InvokeRequired) {
     72        txtLog.Invoke(new Action<string>(txtLog.AppendText), e.Value + Environment.NewLine);
     73      } else {
     74        txtLog.AppendText(e.Value + Environment.NewLine);
     75      }
    7276    }
    7377
Note: See TracChangeset for help on using the changeset viewer.