Skip to content

Commit

Permalink
[FIX/#33] 코드리뷰 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchbreeze committed Jan 8, 2024
1 parent a63737b commit 9a375c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,14 @@

<activity
android:name="com.going.presentation.todo.TodoActivity"
android:exported="true"
android:exported="false"
android:screenOrientation="portrait" />

<activity
android:name="com.going.presentation.onboarding.OnboardingProfileSettingActivity"
android:exported="false"
android:screenOrientation="portrait" />


<activity
android:name="com.going.presentation.tendencytest.TendencyTestSplashActivity"
android:exported="false"
Expand Down Expand Up @@ -93,7 +92,6 @@
android:exported="false"
android:screenOrientation="portrait"/>


</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ class MyTodoListViewHolder(
tvMyTodoLock.setTextColor(ContextCompat.getColor(binding.root.context, R.color.gray_400))
}

binding.cbMyTodoUnselected.setOnSingleClickListener {
cbMyTodoUnselected.setOnSingleClickListener {
itemSelect(position)
}

binding.cbMyTodoSelected.setOnSingleClickListener {
cbMyTodoSelected.setOnSingleClickListener {
itemUnselect(position)
}
}
Expand Down

0 comments on commit 9a375c7

Please sign in to comment.