Skip to content

Commit 6761310

Browse files
committed
Fixed an incorrect height value
1 parent 1aba491 commit 6761310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WooCommerce/Classes/ViewRelated/MainTabBarController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ private class GreenDotView: UIView {
212212
let path = UIBezierPath(ovalIn: CGRect(x: rect.origin.x + borderWidth,
213213
y: rect.origin.y + borderWidth,
214214
width: rect.size.width - borderWidth*2,
215-
height: rect.size.width - borderWidth*2))
215+
height: rect.size.height - borderWidth*2))
216216
StyleManager.wooAccent.setFill()
217217
path.fill()
218218

0 commit comments

Comments
 (0)