Skip to content

Commit

Permalink
Merge pull request #141 from moliya/moliya-patch-CGFloat
Browse files Browse the repository at this point in the history
fixed CGFloat
  • Loading branch information
s4cha committed Apr 20, 2020
2 parents 2360c73 + b19a37d commit 65fb1e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Stevia/Stevia+Stacks.swift
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public extension UIView {
m = Double(i)
} else if let d = o as? Double {
m = d
} else if let cg = o as? Double {
} else if let cg = o as? CGFloat {
m = Double(cg)
}
return m
Expand Down

0 comments on commit 65fb1e5

Please sign in to comment.