Skip to content

Commit

Permalink
https://github.com/Portree-Kid/flightgear-airports/issues/56
Browse files Browse the repository at this point in the history
  • Loading branch information
Portree-Kid committed Jul 12, 2020
1 parent 82f88d1 commit a7fb534
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/loaders/TaxiwaySegmentExtender.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,10 @@ exports.extendTaxiSegment = function (taxiwaySegment) {
if(this._map !== null) {
if (this.options.attributes.direction === 'forward') {
this.setText(null);
this.setText(' ', { repeat: true, attributes: { fill: 'red', size: 30 } })
this.setText(' > ', { repeat: true, offset: 10, attributes: { fill: 'red', style: 'vertical-align: bottom; vertical-align: bottom; font-weight: bold; font: bold 30px serif;' } })
} else if (this.options.attributes.direction === 'backward') {
this.setText(null);
this.setText(' ', { repeat: true, attributes: { fill: 'red', size: 30 } })
this.setText(' < ', { repeat: true, offset: 10, attributes: { fill: 'red', style: 'vertical-align: bottom; font-weight: bold; font: bold 30px serif;' } })
} else {
this.setText(null);
}
Expand Down

0 comments on commit a7fb534

Please sign in to comment.