CameraKit / blurkit-android

The missing Android blurring library. Fast blur-behind layout that parallels iOS.
MIT License
3.72k stars 309 forks source link

Only blur when not in edit mode #8

Closed bensandee closed 7 years ago

bensandee commented 7 years ago

Fixes #7 with minimal code changes.

dwillmc commented 7 years ago

@tbsandee your PR has some extra stuff from some of your other work on it, can you change it to just use the first commit and I'll merge it in?

1 nitpick on the code, you have:

if(!isInEditMode()) {
    BlurKit.init(context);
}

Can you add a space after if to match style? Thanks!