Put in a try/catch for the help info popovers

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

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

Loading…
Cancel
Save