Skip to content

Commit

Permalink
fixed opposite delim
Browse files Browse the repository at this point in the history
  • Loading branch information
plantec committed Mar 20, 2024
1 parent 1c10f08 commit a39dc66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Album/AlbOppositeDelimiterUpdater.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ AlbOppositeDelimiterUpdater >> updateOppositeDelimiterIn: anEditorElement [
oppositeDelim ifNotNil: [
oppositeDelim removeFromParent.
oppositeDelim := nil ].
anEditorElement selection ifNotEmpty: [ ^ self ].
oppositeDelim := self createOppositeDelimiterIn: anEditorElement.
oppositeDelim ifNotNil: [ anEditorElement addChild: oppositeDelim ] ])
anEditorElement selection ifEmpty: [
oppositeDelim := self createOppositeDelimiterIn: anEditorElement.
oppositeDelim ifNotNil: [ anEditorElement addChild: oppositeDelim ] ] ])
]

0 comments on commit a39dc66

Please sign in to comment.