Bug #1583: If assignment function is not configurable keep button disabled
FEA: ItEr77S04BugFixing
This commit is contained in:
parent
9937f00e76
commit
be15db0de8
1 changed files with 3 additions and 2 deletions
|
|
@ -1222,8 +1222,9 @@ class Row {
|
|||
|
||||
// Disable if task is updated from timesheets
|
||||
assignmentFunctionsCombo.setDisabled(task.isUpdatedFromTimesheets());
|
||||
assignmentFunctionsConfigureButton.setDisabled(task
|
||||
.isUpdatedFromTimesheets());
|
||||
assignmentFunctionsConfigureButton
|
||||
.setDisabled(assignmentFunctionsConfigureButton.isDisabled()
|
||||
|| task.isUpdatedFromTimesheets());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue