Skip to content

Commit

Permalink
take into account how enabled the tableview is
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisGoosen committed Oct 10, 2024
1 parent 63956e1 commit e93284f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/jaspAudit
2 changes: 1 addition & 1 deletion QMLComponents/components/JASP/Controls/TableView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ TableViewBase
tableView.itemChanged(columnIndex, rowIndex, displayValue, inputType)
tableView.setButtons()
}
editable: itemEditable && tableView.getEditable(columnIndex, rowIndex)
editable: tableView.enabled && itemEditable && tableView.getEditable(columnIndex, rowIndex)
multiple: itemInputType === "formulaArray"
}
}
Expand Down

0 comments on commit e93284f

Please sign in to comment.