Skip to content

Commit

Permalink
Fix layout array bottom margin
Browse files Browse the repository at this point in the history
  • Loading branch information
s4cha committed Feb 23, 2016
1 parent 35f77eb commit 9378cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Stevia/Stevia/Stevia/Source/Stevia+Stacks.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public extension UIView {
//Last Margin, Bottom
if let previousView = objects[i-1] as? UIView {
previousView.bottom(m)
} else if let va = objects[i-2] as? [UIView] {
} else if let va = objects[i-1] as? [UIView] {
va.first!.bottom(m)
}
}
Expand Down

0 comments on commit 9378cba

Please sign in to comment.