This commit is contained in:
Maran 2014-05-27 12:46:02 +02:00
parent 1ab865a994
commit 6fe42f007c
1 changed files with 2 additions and 1 deletions

View File

@ -556,6 +556,7 @@ ApplicationWindow {
SplitView {
orientation: Qt.Horizontal
id: debugSplitView
TableView {
property var debuggerLog: ListModel {
id: debuggerLog
@ -569,7 +570,7 @@ ApplicationWindow {
}
height: parent.height/2
width: parent.width
TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width }
TableViewColumn{ role: "value" ; title: "Stack" ; width: debugSplitView.width }
model: stackModel
}
}