make dismissDialog() catch and ignore exception raised when the dailog

wasn't up.
This commit is contained in:
Eric House 2015-06-05 22:03:59 -07:00
parent 0107f7d16b
commit 766a814019

View file

@ -317,7 +317,11 @@ public class DelegateBase implements DlgClickNotify,
protected void dismissDialog( DlgID dlgID )
{
m_activity.dismissDialog( dlgID.ordinal() );
try {
m_activity.dismissDialog( dlgID.ordinal() );
} catch ( Exception ex ) {
// DbgUtils.loge( ex );
}
}
protected void removeDialog( int id )