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

Attempt to fix focus / multi column

This commit is contained in:
M66B 2020-05-20 08:34:20 +02:00
parent a67575bbec
commit cd38b97501

View file

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