options are not shown if it is a foler
authorpurigarcia <pgarcia@solidgear.es>
Wed, 8 Jul 2015 06:58:06 +0000 (08:58 +0200)
committerpurigarcia <pgarcia@solidgear.es>
Wed, 8 Jul 2015 06:58:06 +0000 (08:58 +0200)
src/com/owncloud/android/files/FileMenuFilter.java

index 4ed9e64..7ed21e4 100644 (file)
@@ -216,17 +216,15 @@ public class FileMenuFilter {
         }
 
         // FAVORITES
-        if (mFile == null || downloading || uploading) {
+        if (mFile == null || downloading || uploading || mFile.isFolder()) {
             toHide.add(R.id.action_favorite_file);
-
         } else {
             toShow.add(R.id.action_favorite_file);
         }
 
         // UNFAVORITES
-        if (mFile == null || downloading || uploading) {
+        if (mFile == null || downloading || uploading || mFile.isFolder()) {
             toHide.add(R.id.action_unfavorite_file);
-
         } else {
             toShow.add(R.id.action_unfavorite_file);
         }