Skip to content

Commit 3a620cb

Browse files
committed
fix microsoft#131743 add menu separator only when adding 'Run to Line'
1 parent 6d29204 commit 3a620cb

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)