[DO NOT MERGE] Fix layout for errorprone build

0dp width caused an error because there was no weight. Since this should
never be visible anyways, changed to wrap_content and visibility gone

Bug: 190505997
Test: visual, builds
Change-Id: I6ad5f50b03df78f014c59a201853b290061f9021
This commit is contained in:
Beth Thibodeau
2021-06-16 16:55:54 -04:00
parent 100b0929b7
commit 79709cfb41

View File

@@ -20,7 +20,8 @@
android:layout_height="wrap_content">
<TextView
android:id="@+id/global_actions_change_message"
android:layout_width="0dp"
android:layout_width="wrap_content"
android:visibility="gone"
android:layout_height="wrap_content"
android:text="@string/global_actions_change_description" />
<ImageView