Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/18/13 13:25:32 (11 years ago)
Author:
ascheibe
Message:

#2085 merged r9710 into stable branch

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.cs

    r9456 r9722  
    326326        runCollectionViewHost.Content = GetAllRunsFromJob(Content);
    327327      }
    328       isPrivilegedCheckBox.Checked = Content.Job.IsPrivileged;
     328      if (InvokeRequired) {
     329        Invoke(new Action(() => { isPrivilegedCheckBox.Checked = Content.Job.IsPrivileged; }));
     330      } else {
     331        isPrivilegedCheckBox.Checked = Content.Job.IsPrivileged;
     332      }
    329333    }
    330334
Note: See TracChangeset for help on using the changeset viewer.