Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d17ac54d authored by George Mount's avatar George Mount
Browse files

Fix slide edge constants to match the gravity values.

Bug 16544683

Change-Id: If9aeb585d5c3eb3a984288c09510e1dde0c03045
parent d92e726c
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -5458,14 +5458,14 @@
         described here. -->
    <declare-styleable name="Slide">
        <attr name="slideEdge">
            <!-- Slide to and from the left edge of the Scene. -->
            <enum name="left" value="0x03" />
            <!-- Slide to and from the top edge of the Scene. -->
            <enum name="top" value="0x30" />
            <!-- Slide to and from the right edge of the Scene. -->
            <enum name="right" value="0x05" />
            <!-- Slide to and from the bottom edge of the Scene. -->
            <enum name="left" value="0" />
            <!-- Slide to and from the bottom edge of the Scene. -->
            <enum name="top" value="1" />
            <!-- Slide to and from the bottom edge of the Scene. -->
            <enum name="right" value="2" />
            <!-- Slide to and from the bottom edge of the Scene. -->
            <enum name="bottom" value="3" />
            <enum name="bottom" value="0x50" />
        </attr>
    </declare-styleable>