Put in a try/catch for the help info popovers

pull/14/head
Sam Bosley 14 years ago
parent 8e405124cd
commit 418b3cf9f3

@ -33,7 +33,11 @@ public class HelpInfoPopover extends QuickActionWidget {
parent.post(new Runnable() { parent.post(new Runnable() {
@Override @Override
public void run() { public void run() {
toShow.show(parent); try {
toShow.show(parent);
} catch (Exception e) {
//Activity wasn't running or something like that
}
} }
}); });
return toShow; return toShow;

Loading…
Cancel
Save