Home button shows an arrow when user is into a folder
[pub/Android/ownCloud.git] / src / com / owncloud / android / ui / activity / FileActivity.java
index 0385833..e792df8 100644 (file)
@@ -388,8 +388,10 @@ public class FileActivity extends ActionBarActivity
         if (mFile.getParentId() == 0) {
             getSupportActionBar().setTitle(getString(
                     R.string.default_display_name_for_root_folder));
         if (mFile.getParentId() == 0) {
             getSupportActionBar().setTitle(getString(
                     R.string.default_display_name_for_root_folder));
+            mDrawerToggle.setDrawerIndicatorEnabled(true);
         } else {
             getSupportActionBar().setTitle(mFile.getFileName().toString());
         } else {
             getSupportActionBar().setTitle(mFile.getFileName().toString());
+            mDrawerToggle.setDrawerIndicatorEnabled(false);
         }
     }
     /**
         }
     }
     /**