forked from qt-creator/qt-creator
QmlDesigner: Fix typo in enum value
Change-Id: If5072b06e5550e0f44cfa57a9b5fe32bf7836310 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
committed by
Henning Gründl
parent
4872bb0f9f
commit
ff7c888f3a
@@ -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)
|
||||
|
Reference in New Issue
Block a user