aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-04-15 05:14:07 +0800
committerMaran <maran.hidskes@gmail.com>2014-04-15 05:14:07 +0800
commitc23a971a1f98cb6f45079846d8ff5efc4f488244 (patch)
tree91ec1beefe3552ca2cea2457de7a902a201f4e5c /ethereal
parent91c75c9305e7554c21e84ed1a07ec0e750bb775a (diff)
downloadgo-tangerine-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar
go-tangerine-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.gz
go-tangerine-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.bz2
go-tangerine-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.lz
go-tangerine-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.xz
go-tangerine-c23a971a1f98cb6f45079846d8ff5efc4f488244.tar.zst
go-tangerine-c23a971a1f98cb6f45079846d8ff5efc4f488244.zip
Fix up paneling
Diffstat (limited to 'ethereal')
-rw-r--r--ethereal/assets/qml/wallet.qml61
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
+ }
+ }
}
}
}