Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/26/18 13:38:05 (6 years ago)
Author:
jzenisek
Message:

#2839: improved HiveAdmin interactions:

  • collaps groups with slaves only
  • update scheduleView only if currently visible
  • made schedule scrollable for non-admins
  • changed selection backcolor
  • fixed add/delete project permission bug for non-admins
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive/3.3/HiveAdminClient.cs

    r15792 r15813  
    327327
    328328      // change is not possisble...
    329       // ... if the moved resource is null
     329      // ... if the child resource is null
     330      // ... or the child resource equals the parent
    330331      // ... or the new parent is not stored yet
    331332      // ... or the new parent is a slave
    332333      // ... or there is not parental change
    333334      if (child == null
     335        || child == parent
    334336        || (parent != null && parent.Id == Guid.Empty)
    335337        || (parent != null && parent is Slave)
Note: See TracChangeset for help on using the changeset viewer.