Skip to content

Commit

Permalink
Fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ramin-deriv committed Jan 7, 2024
1 parent 7e7cb49 commit 4db4442
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class _MarkerAreaState extends State<MarkerArea> {
duration: animationDuration,
opacity: widget.markerSeries.activeMarker != null ? 0.5 : 1,
child: CustomPaint(
child: Container(),
child: const SizedBox.shrink(),
painter: _MarkerPainter(
series: widget.markerSeries,
epochToX: xAxis.xFromEpoch,
Expand Down
1 change: 1 addition & 0 deletions lib/src/deriv_chart/deriv_chart.dart
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ class _DerivChartState extends State<DerivChart> {
dataFitEnabled: widget.dataFitEnabled,
opacity: widget.opacity,
annotations: widget.annotations,
chartAxisConfig: widget.chartAxisConfig,
showCrosshair: widget.showCrosshair,
indicatorsRepo: widget.indicatorsRepo ?? _indicatorsRepo,
maxCurrentTickOffset: widget.maxCurrentTickOffset,
Expand Down

0 comments on commit 4db4442

Please sign in to comment.