shareWithMe is shown in the file list

This commit is contained in:
purigarcia 2015-07-08 17:41:41 +02:00
parent 7623a8af61
commit 0e95ee3e67

View file

@ -268,17 +268,16 @@ public class FileListListAdapter extends BaseAdapter implements ListAdapter {
}
// share with me icon
if (!file.isFolder()) {
ImageView sharedWithMeIconV = (ImageView)
view.findViewById(R.id.sharedWithMeIcon);
sharedWithMeIconV.bringToFront();
if (checkIfFileIsSharedWithMe(file)) {
sharedWithMeIconV.setVisibility(View.VISIBLE);
} else {
sharedWithMeIconV.setVisibility(View.GONE);
}
ImageView sharedWithMeIconV = (ImageView)
view.findViewById(R.id.sharedWithMeIcon);
sharedWithMeIconV.bringToFront();
if (checkIfFileIsSharedWithMe(file)) {
sharedWithMeIconV.setVisibility(View.VISIBLE);
} else {
sharedWithMeIconV.setVisibility(View.GONE);
}
break;
}