Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debugger tabs header font consistency #2536

Merged
merged 1 commit into from
Jan 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/tabs/debugger/debuggerUI/vmDebugger/MemoryPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ MemoryPanel.prototype.update = function (calldata) {
}

MemoryPanel.prototype.render = function () {
return yo`<div id="memorypanel" class="text-monospace small">${this.basicPanel.render()}</div>`
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is the panel well formatted when removing text-monospace ? I remenber using font monospace for this specific reason?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

debug_2

Tabs looks like this

return yo`<div id="memorypanel">${this.basicPanel.render()}</div>`
}

module.exports = MemoryPanel
2 changes: 1 addition & 1 deletion src/app/tabs/debugger/debuggerUI/vmDebugger/StackPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ StackPanel.prototype.update = function (calldata) {
}

StackPanel.prototype.render = function () {
return yo`<div id="stackpanel" class="text-monospace small">${this.basicPanel.render()}</div>`
return yo`<div id="stackpanel">${this.basicPanel.render()}</div>`
}

module.exports = StackPanel