Merge pull request #303 from hav3n/branch-fix-icon

Fix for #266
This commit is contained in:
Dominik Schürmann 2014-02-25 20:25:09 +01:00
commit 5f669fa813
7 changed files with 6 additions and 2 deletions

3
.gitignore vendored
View File

@ -28,3 +28,6 @@ pom.xml.*
#IntelliJ IDEA #IntelliJ IDEA
.idea .idea
*.iml *.iml
#OS Specific
[Tt]humbs.db

View File

@ -61,7 +61,8 @@ public class DeleteFileDialogFragment extends DialogFragment {
AlertDialog.Builder alert = new AlertDialog.Builder(activity); AlertDialog.Builder alert = new AlertDialog.Builder(activity);
alert.setIcon(android.R.drawable.ic_dialog_alert);
alert.setIcon(R.drawable.ic_dialog_alert_holo_light);
alert.setTitle(R.string.warning); alert.setTitle(R.string.warning);
alert.setMessage(this.getString(R.string.file_delete_confirmation, deleteFile)); alert.setMessage(this.getString(R.string.file_delete_confirmation, deleteFile));

View File

@ -100,7 +100,7 @@ public class DeleteKeyDialogFragment extends DialogFragment {
builder.setMessage(R.string.key_deletion_confirmation_multi); builder.setMessage(R.string.key_deletion_confirmation_multi);
} }
builder.setIcon(android.R.drawable.ic_dialog_alert); builder.setIcon(R.drawable.ic_dialog_alert_holo_light);
builder.setPositiveButton(R.string.btn_delete, new DialogInterface.OnClickListener() { builder.setPositiveButton(R.string.btn_delete, new DialogInterface.OnClickListener() {
@Override @Override

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 770 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB