فهرست منبع

Fix drawer back arrow

Mario Danic 8 سال پیش
والد
کامیت
3273ad88bb
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      src/com/owncloud/android/ui/activity/DrawerActivity.java

+ 3 - 1
src/com/owncloud/android/ui/activity/DrawerActivity.java

@@ -507,8 +507,10 @@ public abstract class DrawerActivity extends ToolbarActivity implements DisplayU
         super.updateActionBarTitleAndHomeButton(chosenFile);
 
         /// set home button properties
-        if (mDrawerToggle != null) {
+        if (mDrawerToggle != null && chosenFile != null) {
             mDrawerToggle.setDrawerIndicatorEnabled(isRoot(chosenFile));
+        } else {
+            mDrawerToggle.setDrawerIndicatorEnabled(false);
         }
     }