Skip to content

Commit

Permalink
fix width setting
Browse files Browse the repository at this point in the history
  • Loading branch information
EdgarDegas committed Sep 15, 2021
1 parent b2137d9 commit 523478a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/Delayout/Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2177,7 +2177,7 @@ public extension UIView {
) -> Self {
let constraint = SizeConstraint(
id: id,
thisSide: .height,
thisSide: .width,
thatSide: side,
multiplier: multiplier,
equality: .equal,
Expand Down Expand Up @@ -2216,7 +2216,7 @@ public extension UIView {
) -> Self {
let constraint = SizeConstraint(
id: id,
thisSide: .height,
thisSide: .width,
thatSide: side,
multiplier: multiplier,
equality: .greater,
Expand Down Expand Up @@ -2255,7 +2255,7 @@ public extension UIView {
) -> Self {
let constraint = SizeConstraint(
id: id,
thisSide: .height,
thisSide: .width,
thatSide: side,
multiplier: multiplier,
equality: .less,
Expand Down

0 comments on commit 523478a

Please sign in to comment.