1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 12:44:42 +00:00

Prevent column focus

This commit is contained in:
M66B 2020-05-19 16:18:04 +02:00
parent 78dee11bf0
commit 4727117052

View file

@ -14,7 +14,9 @@
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2" />
android:layout_weight="2"
android:focusable="false"
android:focusableInTouchMode="false" />
<View
android:id="@+id/content_separator"
@ -26,7 +28,9 @@
android:id="@+id/content_pane"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
android:layout_weight="1"
android:focusable="false"
android:focusableInTouchMode="false" />
</LinearLayout>
<eu.faircode.email.ScrollViewEx