🎨 Update av

This commit is contained in:
Daniel 2023-07-02 11:30:01 +08:00
parent 22ffc30245
commit d175677042
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
5 changed files with 85 additions and 3 deletions

View file

@ -232,6 +232,12 @@ func performTx(tx *Transaction) (ret *TxErr) {
ret = tx.doUpdateAttrViewCell(op)
case "sortAttrViewRow":
ret = tx.doSortAttrViewRow(op)
case "setAttrViewColHidden":
ret = tx.doSetAttrViewColumnHidden(op)
case "setAttrViewColWrap":
ret = tx.doSetAttrViewColumnWrap(op)
case "setAttrViewColWidth":
ret = tx.doSetAttrViewColumnWidth(op)
}
if nil != ret {