Skip to content

Commit

Permalink
Merge branch 'feature/david/ads/browser_dialogs' of github.com:duckdu…
Browse files Browse the repository at this point in the history
…ckgo/Android into feature/david/ads/browser_dialogs
  • Loading branch information
malmstein committed Dec 14, 2022
2 parents c3bd101 + 8345e20 commit 35f2d43
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,7 @@ class TextAlertDialogBuilder(val context: Context) : DaxAlertDialog {
dialog?.dismiss()
}

override fun isShowing(): Boolean {
return if (dialog != null) {
dialog!!.isShowing
} else {
false
}
}
override fun isShowing(): Boolean = dialog?.isShowing == true

private fun setViews(
binding: DialogTextAlertBinding,
Expand Down

0 comments on commit 35f2d43

Please sign in to comment.