Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/26/12 22:01:38 (13 years ago)
Author:
ascheibe
Message:

#1744 added an option so that the parent task can also wait on the slave for the child tasks to finish

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveHiveEngine/HeuristicLab.HiveEngine.Views/3.3/HiveEngineView.cs

    r7287 r7417  
    7474        executionTimeOnHiveTextBox.Text = string.Empty;
    7575        isPrivilegedCheckBox.Checked = false;
     76        pauseOnWaitCheckbox.Checked = true;
    7677        hiveExperimentListView.Content = null;
    7778        logView.Content = null;
     
    8384        hiveExperimentListView.Content = Content.Jobs;
    8485        logView.Content = Content.Log;
     86        pauseOnWaitCheckbox.Checked = Content.PauseWhileCalculatingChilds;
    8587      }
    8688    }
     
    112114      Content.IsPrivileged = isPrivilegedCheckBox.Checked;
    113115    }
     116
     117    private void pauseOnWaitCheckbox_Validated(object sender, EventArgs e) {
     118      Content.PauseWhileCalculatingChilds = pauseOnWaitCheckbox.Checked;
     119    }
    114120    #endregion
    115121  }
Note: See TracChangeset for help on using the changeset viewer.