Skip to content

Commit

Permalink
fix: do not mask radio needles in rose modes (#8102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saschl authored Jul 13, 2023
1 parent bee1f6b commit 9bed87c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fbw-a32nx/src/systems/instruments/src/NDv2/ND.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ export class NDComponent extends DisplayComponent<NDProps> {
<FmMessages bus={this.props.bus} mode={this.currentPageMode} />
<CrossTrackError bus={this.props.bus} currentPageMode={this.currentPageMode} isNormalOperation={this.mapFlagShown.map((it) => !it)} />

<g id="radio_needles" clip-path={this.currentPageMode.map((m) => (m === EfisNdMode.ARC ? 'url(#arc-mode-map-clip)' : 'url(#rose-mode-map-clip)'))}>
<g id="radio_needles" clip-path={this.currentPageMode.map((m) => (m === EfisNdMode.ARC ? 'url(#arc-mode-map-clip)' : ''))}>

<RadioNeedle
bus={this.props.bus}
Expand Down

0 comments on commit 9bed87c

Please sign in to comment.