Skip to content

Commit 930fa35

Browse files
authored
Fix wrong size of input text touch area (#6065)
Task/Issue URL: https://app.asana.com/1/137249556945/project/488551667048375/task/1210249447854552?focus=true ### Description Fixes the wrong size of the input text, so that the PD is not called mistakenly.
1 parent 4775d3c commit 930fa35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/main/res/layout/view_new_omnibar.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
android:id="@+id/omnibarTextInput"
190190
style="@style/Base.V7.Widget.AppCompat.EditText"
191191
android:layout_width="0dp"
192-
android:layout_height="wrap_content"
192+
android:layout_height="0dp"
193193
android:background="@null"
194194
android:fontFamily="sans-serif"
195195
android:hint="@string/omnibarInputHint"

app/src/main/res/layout/view_new_omnibar_bottom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
android:id="@+id/omnibarTextInput"
191191
style="@style/Base.V7.Widget.AppCompat.EditText"
192192
android:layout_width="0dp"
193-
android:layout_height="wrap_content"
193+
android:layout_height="0dp"
194194
android:background="@null"
195195
android:fontFamily="sans-serif"
196196
android:hint="@string/omnibarInputHint"

0 commit comments

Comments
 (0)