Move arrow_pointer hotspot to better match actual tip

Hotspot position of (6,6) does not fully match the actually tip of the
arrow_pointer cursor image. The position where the click is registered
is visibly off. This can be verified by enabling "Pointer location" in
the developer options.

This patch changes the hotspot to (5,5) which better resembles the
actual tip of the arrow.
This commit is contained in:
Michael Zoech
2014-12-09 19:18:06 -08:00
parent 3d00fdf4cb
commit 542774bb15

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<pointer-icon xmlns:android="http://schemas.android.com/apk/res/android"
android:bitmap="@drawable/pointer_arrow"
android:hotSpotX="6dp"
android:hotSpotY="6dp" />
android:hotSpotX="5dp"
android:hotSpotY="5dp" />