QmlDesigner: Fix typo in enum value

Change-Id: If5072b06e5550e0f44cfa57a9b5fe32bf7836310
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Henning Gruendl
2025-01-28 14:32:30 +01:00
committed by Henning Gründl
parent 4872bb0f9f
commit ff7c888f3a

View File

@@ -463,15 +463,13 @@ Rectangle {
text: qsTr("Columns")
model: ListModel {
id: columnModel
onDataChanged: {
tableView.forceLayout()
}
onDataChanged: tableView.forceLayout()
}
style: StudioTheme.Values.viewBarControlStyle
Component.onCompleted: {
tableView.setColumnWidth(DeviceManagerModel.Status, 80)
tableView.setColumnWidth(DeviceManagerModel.Eabled, 70)
tableView.setColumnWidth(DeviceManagerModel.Enabled, 70)
tableView.setColumnWidth(DeviceManagerModel.Alias, 200)
tableView.setColumnWidth(DeviceManagerModel.IPv4Addr, 110)
tableView.setColumnWidth(DeviceManagerModel.OS, 100)