Skip to content

Commit

Permalink
Fix for regression from Pull #620
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed May 16, 2020
1 parent 1f73e25 commit cad464b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gen-objects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ export function addTextDefinition(target: ISlideLib, text: string | IText[], opt
}

// A.2: Placeholder should inherit their bullets or override them, so don't default them
if (!opt.placeholder || isPlaceholder) {
if (opt.placeholder || isPlaceholder) {
opt.bullet = opt.bullet || false
}

Expand Down

0 comments on commit cad464b

Please # to comment.