${this.stackPanel.render()}
${this.memoryPanel.render()}
diff --git a/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js b/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js
index c4874aafd8..5ab491686a 100644
--- a/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js
+++ b/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js
@@ -41,11 +41,11 @@ CodeListView.prototype.indexChanged = function (index) {
}
let codeView = this.view.querySelector('#asmitems')
this.itemSelected = codeView.children[index]
- this.itemSelected.style.setProperty('background-color', 'var(--info)')
- this.itemSelected.style.setProperty('color', 'var(--light)')
+ this.itemSelected.style.setProperty('border-color', 'var(--primary)')
+ this.itemSelected.style.setProperty('border-style', 'solid')
this.itemSelected.setAttribute('selected', 'selected')
if (this.itemSelected.firstChild) {
- this.itemSelected.firstChild.setAttribute('style', 'margin-left: 2px')
+ //this.itemSelected.firstChild.setAttribute('style', 'margin-left: 2px')
}
codeView.scrollTop = this.itemSelected.offsetTop - parseInt(codeView.offsetTop)
}
@@ -67,9 +67,9 @@ CodeListView.prototype.changed = function (code, address, index) {
CodeListView.prototype.renderAssemblyItems = function () {
if (this.code) {
var codeView = this.code.map(function (item, i) {
- return yo`
${item}
`
+ return yo`
${item}
`
})
- return yo`
+ return yo`
${codeView}
`
}
diff --git a/src/app/tabs/debugger/debuggerUI/vmDebugger/DropdownPanel.js b/src/app/tabs/debugger/debuggerUI/vmDebugger/DropdownPanel.js
index ea6c0400ac..ab2adf192f 100644
--- a/src/app/tabs/debugger/debuggerUI/vmDebugger/DropdownPanel.js
+++ b/src/app/tabs/debugger/debuggerUI/vmDebugger/DropdownPanel.js
@@ -122,7 +122,7 @@ DropdownPanel.prototype.render = function (overridestyle, node) {
`
var view = yo`
-