Commit bc2c02cc by Sebastián Katzer

Using application icon if res://icon fails [fixes #920]

parent 6e0cb626
...@@ -274,6 +274,10 @@ public class Options { ...@@ -274,6 +274,10 @@ public class Options {
} }
if (resId == 0) { if (resId == 0) {
resId = context.getApplicationInfo().icon;
}
if (resId == 0) {
resId = android.R.drawable.ic_popup_reminder; resId = android.R.drawable.ic_popup_reminder;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment