Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Fixes #1941 Fix the tray separator #2674

Merged
merged 1 commit into from
Jan 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/src/main/res/layout/vertical_separator.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
<merge xmlns:android="http://schemas.android.com/apk/res/android">

<LinearLayout
android:layout_width="0.5dp"
android:layout_width="5dp"
android:layout_height="match_parent"
android:gravity="center"
android:background="@drawable/tray_background_unchecked_middle">

<LinearLayout
android:layout_width="match_parent"
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/dimen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<item name="tray_world_y" format="float" type="dimen">0.25</item>
<item name="tray_world_z" format="float" type="dimen">-2.5</item>
<item name="tray_world_width" format="float" type="dimen">1.42</item>
<dimen name="tray_width">246dp</dimen>
<dimen name="tray_width">255dp</dimen>
<dimen name="tray_height">40dp</dimen>
<item name="tray_tooltip_density" format="float" type="dimen">4.0</item>
<dimen name="tray_tooltip_padding_h">20dp</dimen>
Expand Down