diff options
author | Maran <maran.hidskes@gmail.com> | 2014-04-15 05:14:07 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-04-15 05:14:07 +0800 |
commit | c23a971a1f98cb6f45079846d8ff5efc4f488244 (patch) | |
tree | 91ec1beefe3552ca2cea2457de7a902a201f4e5c | |
parent | 91c75c9305e7554c21e84ed1a07ec0e750bb775a (diff) | |
download | dexon-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar dexon-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.gz dexon-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.bz2 dexon-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.lz dexon-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.xz dexon-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.zst dexon-c23a971a1f98cb6f45079846d8ff5efc4f488244.zip |
Fix up paneling
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 61 |
1 files changed, 30 insertions, 31 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 2d2a9db9f..37224c7b4 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -401,37 +401,36 @@ ApplicationWindow { orientation: Qt.Vertical anchors.fill: parent - TableView { - property var memModel: ListModel { - id: memModel - } - height: parent.height/2 - width: parent.width - TableViewColumn{ id:mnumColmn ; role: "num" ; title: "#" ; width: 50} - TableViewColumn{ role: "value" ; title: "Memory" ; width: 750} - model: memModel - } - - SplitView { - orientation: Qt.Vertical - anchors.fill: parent - TableView { - property var debuggerLog: ListModel { - id: debuggerLog - } - TableViewColumn{ role: "value"; title: "Debug messages" } - model: debuggerLog - } - } - TableView { - property var stackModel: ListModel { - id: stackModel - } - height: parent.height/2 - width: parent.width - TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width } - model: stackModel - } + TableView { + property var memModel: ListModel { + id: memModel + } + height: parent.height/2 + width: parent.width + TableViewColumn{ id:mnumColmn ; role: "num" ; title: "#" ; width: 50} + TableViewColumn{ role: "value" ; title: "Memory" ; width: 750} + model: memModel + } + + SplitView { + orientation: Qt.Horizontal + TableView { + property var debuggerLog: ListModel { + id: debuggerLog + } + TableViewColumn{ role: "value"; title: "Debug messages" } + model: debuggerLog + } + TableView { + property var stackModel: ListModel { + id: stackModel + } + height: parent.height/2 + width: parent.width + TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width } + model: stackModel + } + } } } } |