Skip to content

Commit

Permalink
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions xpi/chrome/content/prefs.xul
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,13 @@
getCellProperties : function(row, {index : col}, props){
var val = this.rows[row][col];
if(col!=0 && val)
props.AppendElement(AtomService.getAtom(val));
if (col!=0 && val) {
if (props) {
props.AppendElement(AtomService.getAtom(val));
} else {
return AtomService.getAtom(val);
}
}
},
getCellText : function(row, {index : col}){
Expand Down

0 comments on commit 127640b

Please sign in to comment.