Skip to content

Commit

Permalink
Update setDebug()
Browse files Browse the repository at this point in the history
  • Loading branch information
igreenwood committed Apr 12, 2016
1 parent 652eae7 commit 06d90cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ public void onViewCreated(View view, Bundle savedInstanceState) {
bindViews(view);
// apply custom font
FontUtils.setFont(mRootLayout);

// mCropView.setDebug(true);
// set bitmap to CropImageView
if (mCropView.getImageBitmap() == null) {
mCropView.setDebug(true);
mCropView.setImageResource(R.drawable.sample5);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1917,6 +1917,7 @@ public void setInterpolator(Interpolator interpolator) {
*/
public void setDebug(boolean debug) {
mIsDebug = debug;
invalidate();
}

/**
Expand Down

0 comments on commit 06d90cc

Please sign in to comment.