]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/dialogs/MoveToFolder.java
Release v1.14.
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / MoveToFolder.java
index e2e2f88fc3938fa63277b38fe4b9d68511af0f3f..38af5f2129c20d8ae6bb4d52a1836c7bc3e76d0e 100644 (file)
@@ -171,7 +171,7 @@ public class MoveToFolder extends AppCompatDialogFragment {
             };
         } else {  // Display `Home Folder` at the top of the `ListView`.
             // Get the home folder icon drawable and convert it to a `Bitmap`.  `this` specifies the current context.
-            Drawable homeFolderIconDrawable = ContextCompat.getDrawable(getActivity().getApplicationContext(), R.drawable.folder_grey_bitmap);
+            Drawable homeFolderIconDrawable = ContextCompat.getDrawable(getActivity().getApplicationContext(), R.drawable.folder_gray_bitmap);
             BitmapDrawable homeFolderIconBitmapDrawable = (BitmapDrawable) homeFolderIconDrawable;
             Bitmap homeFolderIconBitmap = homeFolderIconBitmapDrawable.getBitmap();
             // Convert the folder `Bitmap` to a byte array.  `0` is for lossless compression (the only option for a PNG).