diff --git a/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js b/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js
index 3206e7f0f5..bdb5870ad1 100644
--- a/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js
+++ b/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js
@@ -16,11 +16,15 @@ var FullStoragesChangesPanel = require('./vmDebugger/FullStoragesChanges')
var DropdownPanel = require('./vmDebugger/DropdownPanel')
var css = csjs`
+ .solidityPanel {
+ width: 100%;
+ }
.asmCode {
width: 100%;
}
.stepDetail {
width: 100%;
+ line-height: 2O%;
}
.vmheadView {
margin-top:10px;
@@ -127,17 +131,27 @@ function VmDebugger (vmDebuggerLogic) {
this.vmDebuggerLogic.event.register('newCallTree', () => {
if (!self.view) return
+ self.functionPanel.basicPanel.show()
self.solidityLocals.basicPanel.show()
self.solidityState.basicPanel.show()
+ self.solidityPanel.hidden = false
})
this.vmDebuggerLogic.start()
}
VmDebugger.prototype.renderHead = function () {
+ this.solidityPanel = yo`
+
+ ${this.functionPanel.render()}
+ ${this.solidityLocals.render()}
+ ${this.solidityState.render()}
+
+ `
const headView = yo`
+ ${this.solidityPanel}
${this.asmCode.render()}
${this.stepDetail.render()}
@@ -158,10 +172,7 @@ VmDebugger.prototype.render = function () {
const view = yo`
- ${this.solidityLocals.render()}
- ${this.solidityState.render()}
${this.stackPanel.render()}
- ${this.functionPanel.render()}
${this.memoryPanel.render()}
${this.storagePanel.render()}
${this.callstackPanel.render()}
diff --git a/apps/remix-ide/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js b/apps/remix-ide/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js
index 26ccbc3871..8723d71560 100644
--- a/apps/remix-ide/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js
+++ b/apps/remix-ide/src/app/tabs/debugger/debuggerUI/vmDebugger/CodeListView.js
@@ -8,7 +8,7 @@ var csjs = require('csjs-inject')
var css = csjs`
.instructions {
overflow-y: scroll;
- max-height: 150px;
+ max-height: 100px;
}
`
function CodeListView () {
diff --git a/src/app/tabs/debugger/debuggerUI/vmDebugger/FunctionPanel.js b/src/app/tabs/debugger/debuggerUI/vmDebugger/FunctionPanel.js
index 16fc59db75..6c9a94118d 100644
--- a/src/app/tabs/debugger/debuggerUI/vmDebugger/FunctionPanel.js
+++ b/src/app/tabs/debugger/debuggerUI/vmDebugger/FunctionPanel.js
@@ -3,7 +3,7 @@ var DropdownPanel = require('./DropdownPanel')
var yo = require('yo-yo')
function FunctionPanel () {
- this.basicPanel = new DropdownPanel('Function', {json: true, displayContentOnly: false})
+ this.basicPanel = new DropdownPanel('Function Stack', {json: true, displayContentOnly: false})
}
FunctionPanel.prototype.update = function (calldata) {