Skip to content

Commit

Permalink
Fix missing drawIconsEnabled parameter initialization in the copying …
Browse files Browse the repository at this point in the history
…constructor of the ChartBaseDataSet (#4424)
  • Loading branch information
bivant authored Oct 30, 2020
1 parent d2bf08f commit 9b24868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Charts/Data/Implementations/ChartBaseDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ open class ChartBaseDataSet: NSObject, ChartDataSetProtocol, NSCopying
copy.formLineDashPhase = formLineDashPhase
copy.formLineDashLengths = formLineDashLengths
copy.drawValuesEnabled = drawValuesEnabled
copy.drawValuesEnabled = drawValuesEnabled
copy.drawIconsEnabled = drawIconsEnabled
copy.iconsOffset = iconsOffset
copy.visible = visible

Expand Down

0 comments on commit 9b24868

Please sign in to comment.