Skip to content

Commit 530804b

Browse files
authored
Merge pull request microsoft#131744 from gjsjohnmurray/fix-131743
fix microsoft#131743 add menu separator only when adding 'Run to Line'
2 parents 15ecc8d + 3a620cb commit 530804b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,9 +397,8 @@ export class BreakpointEditorContribution implements IBreakpointEditorContributi
397397
));
398398
}
399399

400-
actions.push(new Separator());
401-
402400
if (this.debugService.state === State.Stopped) {
401+
actions.push(new Separator());
403402
actions.push(new Action(
404403
'runToLine',
405404
nls.localize('runToLine', "Run to Line"),

0 commit comments

Comments
 (0)