Can't dismiss a nonvisible dialog.

This commit is contained in:
Kevin Ruland 2012-02-16 14:52:15 +00:00
parent 1cde36a461
commit 4add9a88f4

View File

@ -136,7 +136,7 @@ public abstract class TCQueryAction extends Fragment {
protected void dismiss() {
AndroidLogWrapper.d(TCQueryAction.class,"dismiss the progress");
ProgressDialogFragment progress = (ProgressDialogFragment) getActivity().getSupportFragmentManager().findFragmentByTag(PROGRESS_DIALOG_TAG);
if ( progress != null ) {
if ( progress != null && progress.isVisible()) {
progress.dismiss();
}
}