We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now MRProgress forces the provided custom view to be a square if using CustomMode, related code in manualLayoutSubviews in MRProgressOverlayView:
manualLayoutSubviews
modeViewFrame = CGRectMake(modePadding, y, innerViewWidth, innerViewWidth);
Could you use the height which the custom view provides? Suggested change like:
modeViewFrame = CGRectMake(modePadding, y, innerViewWidth, self.modeView.frame.size.height);
Thank you.
The text was updated successfully, but these errors were encountered:
You're right. Using the provided height would make much more sense here. Are you eager to put together a PR for that? That would be welcome.
Sorry, something went wrong.
No branches or pull requests
Now MRProgress forces the provided custom view to be a square if using CustomMode, related code in
manualLayoutSubviews
in MRProgressOverlayView:Could you use the height which the custom view provides? Suggested change like:
Thank you.
The text was updated successfully, but these errors were encountered: