Skip to content

Commit

Permalink
Merge branch 'develop' into release/3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
maxme committed Nov 21, 2014
2 parents e6eb6dc + 7078615 commit 6e2fc97
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
public class AppLog {
// T for Tag
public enum T {READER, EDITOR, MEDIA, NUX, API, STATS, UTILS, NOTIFS, DB, POSTS, COMMENTS, THEMES, TESTS, PROFILING, SIMPERIUM}
public enum T {READER, EDITOR, MEDIA, NUX, API, STATS, UTILS, NOTIFS, DB, POSTS, COMMENTS, THEMES, TESTS, PROFILING, SIMPERIUM, SUGGESTION}
public static final String TAG = "WordPress";
public static final int HEADER_LINE_COUNT = 2;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -528,12 +528,6 @@ public static Bitmap getCircularBitmap(final Bitmap bitmap) {
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);

// outline
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(1f);
paint.setColor(Color.DKGRAY);
canvas.drawOval(rectF, paint);

return output;
}

Expand Down

0 comments on commit 6e2fc97

Please sign in to comment.