Skip to content

Commit

Permalink
Merge pull request #30 from tradingview/typo-in-fixRightEdge
Browse files Browse the repository at this point in the history
Fixed copypaste issue with incorrect handling fixRightEdge
  • Loading branch information
makedonsky94 authored Nov 24, 2021
2 parents 8b3023b + af596e1 commit 3f9942c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public struct TimeScaleOptions {
self.barSpacing = barSpacing
self.minBarSpacing = minBarSpacing
self.fixLeftEdge = fixLeftEdge
self.fixRightEdge = fixLeftEdge
self.fixRightEdge = fixRightEdge
self.lockVisibleTimeRangeOnResize = lockVisibleTimeRangeOnResize
self.rightBarStaysOnScroll = rightBarStaysOnScroll
self.borderVisible = borderVisible
Expand All @@ -65,6 +65,7 @@ extension TimeScaleOptions: Codable {
case rightOffset
case barSpacing
case fixLeftEdge
case fixRightEdge
case lockVisibleTimeRangeOnResize
case rightBarStaysOnScroll
case borderVisible
Expand Down

0 comments on commit 3f9942c

Please sign in to comment.