diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-26 23:33:40 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-26 23:33:40 +0800 |
commit | 648c418fcd7a88fc48032c55c2dba87f6bdad8c7 (patch) | |
tree | 95e3701992b5757f4b392ff5b77cec971bafcc41 /ethereal/assets | |
parent | 21d86ca486a88c936a1fe71f78d76c78df36a7eb (diff) | |
parent | b89076faa2748a41031c4bc33bbdeba3e2effd01 (diff) | |
download | go-tangerine-648c418fcd7a88fc48032c55c2dba87f6bdad8c7.tar go-tangerine-648c418fcd7a88fc48032c55c2dba87f6bdad8c7.tar.gz go-tangerine-648c418fcd7a88fc48032c55c2dba87f6bdad8c7.tar.bz2 go-tangerine-648c418fcd7a88fc48032c55c2dba87f6bdad8c7.tar.lz go-tangerine-648c418fcd7a88fc48032c55c2dba87f6bdad8c7.tar.xz go-tangerine-648c418fcd7a88fc48032c55c2dba87f6bdad8c7.tar.zst go-tangerine-648c418fcd7a88fc48032c55c2dba87f6bdad8c7.zip |
Merge branch 'develop' of github.com:ethereum/go-ethereum into feature/logging
Diffstat (limited to 'ethereal/assets')
-rw-r--r-- | ethereal/assets/debugger/debugger.qml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ethereal/assets/debugger/debugger.qml b/ethereal/assets/debugger/debugger.qml index 31e0eb781..d54c79523 100644 --- a/ethereal/assets/debugger/debugger.qml +++ b/ethereal/assets/debugger/debugger.qml @@ -10,9 +10,9 @@ ApplicationWindow { visible: false title: "IceCREAM" minimumWidth: 1280 - minimumHeight: 900 + minimumHeight: 700 width: 1290 - height: 900 + height: 700 property alias codeText: codeEditor.text property alias dataText: rawDataField.text @@ -56,7 +56,7 @@ ApplicationWindow { Rectangle { color: "#00000000" - height: 500 + height: 330 anchors.left: parent.left anchors.right: parent.right @@ -208,6 +208,12 @@ ApplicationWindow { } text: "Next" } + CheckBox { + id: breakEachLine + objectName: "breakEachLine" + text: "Break each instruction" + checked: true + } } } |