Fixes CB-10607

When the device is in portrait upside down the toolbar appears at the
bottom. This fix set the origin to the 0,0 point
This commit is contained in:
Julio César 2016-02-13 19:33:21 +01:00
parent 2d836eea0f
commit 555d55ac8a

View File

@ -1019,8 +1019,8 @@
CGFloat temp = rect.size.width;
rect.size.width = rect.size.height;
rect.size.height = temp;
rect.origin = CGPointZero;
}
rect.origin = CGPointZero;
}
return rect;
}