aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/debugger/debugger.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/assets/debugger/debugger.qml')
-rw-r--r--ethereal/assets/debugger/debugger.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/ethereal/assets/debugger/debugger.qml b/ethereal/assets/debugger/debugger.qml
index f204647c8..34fe01253 100644
--- a/ethereal/assets/debugger/debugger.qml
+++ b/ethereal/assets/debugger/debugger.qml
@@ -19,7 +19,7 @@ ApplicationWindow {
property alias dataText: rawDataField.text
onClosing: {
- compileTimer.stop()
+ //compileTimer.stop()
}
MenuBar {
@@ -86,7 +86,7 @@ ApplicationWindow {
TableView {
id: asmTableView
width: 200
- TableViewColumn{ role: "value" ; title: "" ; width: 200 }
+ TableViewColumn{ role: "value" ; title: "" ; width: asmTableView.width - 2 }
model: asmModel
}
@@ -112,13 +112,15 @@ ApplicationWindow {
anchors.right: settings.left
focus: true
+ /*
Timer {
id: compileTimer
interval: 500 ; running: true ; repeat: true
onTriggered: {
- dbg.compile(codeEditor.text)
+ dbg.autoComp(codeEditor.text)
}
}
+ */
}
Column {