project_files/Android-build/SDL-android-project/res/drawable-mdpi/dropdown.xml
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Oct 2017 23:03:52 +0200
changeset 12738 353cb2ce6f9c
parent 7568 75ba91f14ed5
permissions -rw-r--r--
Fix AddAmmo setting ammo to 99 when trying to add infinite ammo This affected the portal mission, the crate only gave you 99 portal guns instead of infinite.

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/dropdown_focused" />
    <item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/dropdown_focused_disabled" />
    <item android:state_focused="false" android:state_enabled="true" android:drawable="@drawable/dropdown_normal" />
    <item android:state_focused="false" android:state_enabled="false" android:drawable="@drawable/dropdown_disabled" />
</selector>