mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-05 22:55:19 +00:00
Fixing various bugs.
This commit is contained in:
parent
44cbe1bbcf
commit
062610c596
4 changed files with 44 additions and 6 deletions
|
|
@ -190,7 +190,7 @@ module.controller('FunctionViewController', function(
|
|||
var address = sourceLine[1];
|
||||
var breakpoint = app.session.breakpoints[address];
|
||||
var el;
|
||||
if (breakpoint) {
|
||||
if (breakpoint && breakpoint.type == 'code') {
|
||||
el = document.createElement('span');
|
||||
el.classList.add('debugger-fnview-gutter-icon-el');
|
||||
if (breakpoint.enabled) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue