Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
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
5 changes: 1 addition & 4 deletions src/components/SecondaryPanes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,6 @@ class SecondaryPanes extends Component<Props> {
const scopesContent: any = this.props.horizontal
? this.getScopeItem()
: null;
const isPaused = () => !!this.props.pauseData;

const items: Array<SecondaryPanesItems> = [
{
header: L10N.getStr("breakpoints.header"),
Expand All @@ -175,8 +173,7 @@ class SecondaryPanes extends Component<Props> {
opened: prefs.callStackVisible,
onToggle: opened => {
prefs.callStackVisible = opened;
},
shouldOpen: isPaused
}
},
scopesContent
];
Expand Down
1 change: 1 addition & 0 deletions src/test/mochitest/browser_dbg-wasm-sourcemaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ add_task(async function() {
await waitForPaused(dbg);
await waitForLoadedSource(dbg, "average.c");
assertPausedLocation(dbg);
toggleCallStack(dbg);

const frames = findAllElements(dbg, "frames");
const firstFrameTitle = frames[0].querySelector(".title").textContent;
Expand Down