Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/Stevia/Stevia+Center.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public extension UIView {
@discardableResult
func centerInContainer() -> Self {
if let spv = superview {
alignCenter(self, with: spv)
Stevia.alignCenter(self, with: spv)
}
return self
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Stevia/Stevia+Constraints.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import UIKit

public class SteviaLayoutConstraint: NSLayoutConstraint {
public static var defaultPriority: Float = UILayoutPriority.defaultHigh + 1
public static var defaultPriority: Float = UILayoutPriority.defaultHigh.rawValue + 1
}


Expand Down
Loading