fixing: Duplicate filename notification completely replaces image-found-on-internet warning #5180 (#5192)

This commit is contained in:
Arman Navodia 2023-04-03 11:38:24 +05:30 committed by GitHub
parent a5a65fc1ee
commit 92ecd61b6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 15 deletions

View file

@ -45,7 +45,7 @@ public class ImageUtils {
/**
* Set 1st bit as 1 for blurry image ie. 0010
*/
static final int IMAGE_BLURRY = 1 << 1; // 2
public static final int IMAGE_BLURRY = 1 << 1; // 2
/**
* Set 2nd bit as 1 for duplicate image ie. 0100
*/
@ -68,7 +68,7 @@ public class ImageUtils {
public static final int IMAGE_KEEP = -1;
public static final int IMAGE_WAIT = -2;
public static final int EMPTY_CAPTION = -3;
public static final int FILE_NAME_EXISTS = -4;
public static final int FILE_NAME_EXISTS = 1 << 6;
static final int NO_CATEGORY_SELECTED = -5;
private static ProgressDialog progressDialogWallpaper;