mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
make dismissDialog() catch and ignore exception raised when the dailog
wasn't up.
This commit is contained in:
parent
0107f7d16b
commit
766a814019
1 changed files with 5 additions and 1 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue