Skip to content

Commit

Permalink
Fix bug in dropEvent which was improperly calling reparentGroupIds. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoTavares committed Oct 28, 2020
1 parent 4d8451a commit 3b04eda
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cuegui/cuegui/CueJobMonitorTree.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,7 @@ def dropEvent(self, event):
item.rpcObject.asGroup().reparentJobs(jobs)

if group_ids:
groups = [opencue.api.getGroup(id_) for id_ in group_ids]
item.rpcObject.asGroup().reparentGroupIds(groups)
item.rpcObject.asGroup().reparentGroupIds(group_ids)

self.updateRequest()

Expand Down

0 comments on commit 3b04eda

Please sign in to comment.