Skip to content

Commit

Permalink
Merge pull request #597 from Team-WSS/bugfix/596
Browse files Browse the repository at this point in the history
bugfix: 약관동의 확인 다이얼로그 외부터치 금지 구현
  • Loading branch information
yeonjeen authored Feb 22, 2025
2 parents cab3042 + 7720f8e commit cde9112
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ class TermsAgreementDialogFragment :
savedInstanceState: Bundle?,
) {
super.onViewCreated(view, savedInstanceState)
isCancelable = false
setupDialog()
onTermsAgreementPopupMenuUpdateClick()
}

private fun setupDialog() {
isCancelable = false
setCancelable(false)
}

private fun onTermsAgreementPopupMenuUpdateClick() {
binding.tvTermsAgreementPopupMenuUpdate.setOnClickListener {
showTermsAgreementBottomSheet()
Expand Down

0 comments on commit cde9112

Please sign in to comment.