Reputation: 16748
I've got a TableView with two TableViewColumns and would like to prevent them from being resized. How can I do this?
TableView {
TableViewColumn {
title: "Name"
width: parent.width - 20
}
TableViewColumn {
width: 18
delegate: CheckBox {
}
}
Upvotes: 0
Views: 106
Reputation: 6735
TableViewColumn {
title: "Name"
width: parent.width - 20
resizable: false
}
Upvotes: 2