Browse Source
Merge pull request #865 from egecelikci/patch-1
fix incorrectly placed string
renovate/org.robolectric-robolectric-4.x
Austin Huang
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
app/src/main/java/awais/instagrabber/fragments/CollectionPostsFragment.java
|
@ -292,7 +292,7 @@ public class CollectionPostsFragment extends Fragment implements SwipeRefreshLay |
|
|
else if (item.getItemId() == R.id.delete) { |
|
|
else if (item.getItemId() == R.id.delete) { |
|
|
final Context context = getContext(); |
|
|
final Context context = getContext(); |
|
|
new AlertDialog.Builder(context) |
|
|
new AlertDialog.Builder(context) |
|
|
.setTitle(R.string.edit_collection) |
|
|
|
|
|
|
|
|
.setTitle(R.string.delete_collection) |
|
|
.setMessage(R.string.delete_collection_note) |
|
|
.setMessage(R.string.delete_collection_note) |
|
|
.setPositiveButton(R.string.confirm, (d, w) -> { |
|
|
.setPositiveButton(R.string.confirm, (d, w) -> { |
|
|
collectionService.deleteCollection( |
|
|
collectionService.deleteCollection( |
|
|