Changeset 16025 for trunk/HeuristicLab.Clients.OKB.Views/3.3/RunCreation
- Timestamp:
- 07/26/18 17:10:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/CreateFromExperimentMenuItem.cs
r16024 r16025 54 54 55 55 //Check if the user has the required OKB permissions. 56 //In case of a nserver outage, a timeout may occur and the call takes a long time.56 //In case of a server outage, a timeout may occur and the call takes a long time. 57 57 //To prevent a possible UI-freeze, the permission-check is implemented as async. 58 58 CheckPrivilege(); … … 62 62 await Task.Run(() => { 63 63 IContentView activeView = MainFormManager.MainForm.ActiveView as IContentView; 64 ToolStripItem.Enabled = true;//OKBRoles.CheckUserPermissions();64 ToolStripItem.Enabled = OKBRoles.CheckUserPermissions(); 65 65 }); 66 66 }
Note: See TracChangeset
for help on using the changeset viewer.