Fix watchlist edition not working

This commit is contained in:
Tanguy Herbron 2018-05-23 17:25:43 +02:00
parent a46ad91f79
commit b46e9cbe3f

View File

@ -11,6 +11,7 @@ import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.graphics.Palette;
import android.support.v7.widget.CardView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
@ -133,7 +134,7 @@ public class Watchlist extends Fragment {
{
View watchlistElement = watchlistLayout.getChildAt(i);
if(watchlistElement instanceof LinearLayout)
if(watchlistElement instanceof CurrencyCardview)
{
watchlistElement.setClickable(true);
collapseW(watchlistElement.findViewById(R.id.deleteCardWatchlist));
@ -148,7 +149,7 @@ public class Watchlist extends Fragment {
{
View watchlistElement = watchlistLayout.getChildAt(i);
if(watchlistElement instanceof LinearLayout)
if(watchlistElement instanceof CurrencyCardview)
{
watchlistElement.setClickable(false);
expandW(watchlistElement.findViewById(R.id.deleteCardWatchlist));