Skip to content

Commit

Permalink
Remove pop-up image for non-libnx NROs
Browse files Browse the repository at this point in the history
  • Loading branch information
PixelyIon committed Jul 3, 2019
1 parent 4da7a9c commit c7fafd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/gq/cyuubi/lightswitch/FileAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ public View getView(int position, View convertView, ViewGroup parent) {
Bitmap icon = dataModel.getIcon();
if(icon!=null) {
viewHolder.icon.setImageBitmap(icon);
viewHolder.icon.setOnClickListener(this);
viewHolder.icon.setTag(position);
}
viewHolder.icon.setOnClickListener(this);
viewHolder.icon.setTag(position);
return convertView;
}

Expand Down

0 comments on commit c7fafd3

Please sign in to comment.