1
0
Fork 0

NOISSUE - Renamed a misspelled variable.

master
Kadeem 2020-02-06 11:00:32 -05:00 committed by Emily Kager
parent a04b595425
commit f4f93e761e
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ class WebsitePermissionsView(
// If more permissions are added into this View we can display them into a list
// and also use DiffUtil to only update one item in case of a permission change
bindPermission(state.camera,
Pair(view.findViewById(R.id.cameraLabel), view.findViewById(R.id.camerStatus)))
Pair(view.findViewById(R.id.cameraLabel), view.findViewById(R.id.cameraStatus)))
bindPermission(state.location,
Pair(view.findViewById(R.id.locationLabel), view.findViewById(R.id.locationStatus)))
bindPermission(state.microphone,

View File

@ -12,7 +12,7 @@
android:layout_height="wrap_content">
<TextView
android:id="@+id/camerStatus"
android:id="@+id/cameraStatus"
style="@style/QuickSettingsText.PermissionItemEnd"
android:layout_width="wrap_content"
android:layout_height="@dimen/quicksettings_item_height"
@ -32,7 +32,7 @@
android:text="@string/preference_phone_feature_camera"
android:visibility="gone"
app:layout_constraintBottom_toTopOf="@id/microphoneLabel"
app:layout_constraintEnd_toStartOf="@id/camerStatus"
app:layout_constraintEnd_toStartOf="@id/cameraStatus"
app:layout_constraintStart_toStartOf="parent"
tools:visibility="visible" />