Skip to content

Commit

Permalink
Issue 7300: Watch expressions are cropped when editing them
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianZ committed Mar 31, 2014
1 parent dad6fd2 commit 4715847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/content/firebug/debugger/watch/watchPanel.js
Expand Up @@ -803,7 +803,7 @@ WatchPanel.prototype = Obj.extend(BasePanel,
}
else if (Css.hasClass(row, "watchRow"))
{
Firebug.Editor.startEditing(row, this.tree.getRowName(row));
Firebug.Editor.startEditing(row, member.value.expr);
return;
}

Expand Down

2 comments on commit 4715847

@simonlindholm
Copy link
Member

Choose a reason for hiding this comment

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

I see the same in DomBasePanel.editProperty.

@SebastianZ
Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, that logic was actually not used anymore. I removed that and moved some other Watch side panel specific things away from the DOMBasePanel in 425a901. There's only one piece left at line 610.

Sebastian

Please sign in to comment.