Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
liyujiang-gzu committed Jul 11, 2022
1 parent 33d03ed commit 112b758
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,10 @@ public void show() {
if (isShowing()) {
return;
}
showSafe();
}

protected void showSafe() {
try {
super.show();
DialogLog.print("dialog show");
Expand All @@ -271,6 +275,10 @@ public void dismiss() {
if (!isShowing()) {
return;
}
dismissSafe();
}

protected void dismissSafe() {
try {
super.dismiss();
DialogLog.print("dialog dismiss");
Expand Down

0 comments on commit 112b758

Please sign in to comment.