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:
parent
2d836eea0f
commit
555d55ac8a
@ -1019,8 +1019,8 @@
|
|||||||
CGFloat temp = rect.size.width;
|
CGFloat temp = rect.size.width;
|
||||||
rect.size.width = rect.size.height;
|
rect.size.width = rect.size.height;
|
||||||
rect.size.height = temp;
|
rect.size.height = temp;
|
||||||
rect.origin = CGPointZero;
|
|
||||||
}
|
}
|
||||||
|
rect.origin = CGPointZero;
|
||||||
}
|
}
|
||||||
return rect;
|
return rect;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user