diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-27 16:42:37 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-27 16:42:37 +0800 |
commit | 4fd267a7785ea06014f38f9be4e8e380c7f1cb1e (patch) | |
tree | 693d2ac06153636077c53d783e77e82e8bb37329 /ethereal/assets/qml/wallet.qml | |
parent | d694e00a3340a36c39872950bb7a2404e9686c18 (diff) | |
download | dexon-4fd267a7785ea06014f38f9be4e8e380c7f1cb1e.tar.gz dexon-4fd267a7785ea06014f38f9be4e8e380c7f1cb1e.tar.zst dexon-4fd267a7785ea06014f38f9be4e8e380c7f1cb1e.zip |
Sep debugger from main
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index f42cf3b1b..40de8624e 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -294,6 +294,7 @@ ApplicationWindow { statusBar: StatusBar { RowLayout { anchors.fill: parent + /* Button { property var enabled: true id: connectButton @@ -304,10 +305,19 @@ ApplicationWindow { } text: "Connect" } + */ + Button { + property var enabled: true + id: debuggerWindow + onClicked: { + ui.startDebugger() + } + text: "Debugger" + } Button { id: importAppButton - anchors.left: connectButton.right + anchors.left: debuggerWindow.right anchors.leftMargin: 5 onClicked: openAppDialog.open() text: "Import App" @@ -473,7 +483,7 @@ ApplicationWindow { } height: parent.height/2 width: parent.width - TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width } + TableViewColumn{ role: "value" ; title: "Stack" ; width: 300 } model: stackModel } } |