Skip to content
New issue

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

Highlighted color of the menu item should stay as expected. The live blur effect set alpha to 0.5 which lead highlight color to be not consistent with the expected one. #106

Merged
merged 1 commit into from Mar 3, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions REMenu/REMenuItemView.m
Expand Up @@ -47,8 +47,6 @@ - (id)initWithFrame:(CGRect)frame menu:(REMenu *)menu item:(REMenuItem*) item ha
_backgroundView = ({
UIView *view = [[UIView alloc] initWithFrame:self.bounds];
view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
if (menu.liveBlur && REUIKitIsFlatMode())
view.alpha = 0.5f;
view;
});
[self addSubview:_backgroundView];
Expand Down