Fix indent.

Change-Id: I3e0c443ddfb2ebc777db7504c89ca1ffec119745
diff --git a/src/com/android/gallery3d/app/AbstractGalleryActivity.java b/src/com/android/gallery3d/app/AbstractGalleryActivity.java
index b3856ad..ac9774a 100644
--- a/src/com/android/gallery3d/app/AbstractGalleryActivity.java
+++ b/src/com/android/gallery3d/app/AbstractGalleryActivity.java
@@ -215,11 +215,11 @@
 
     // Shows status bar in portrait view, hide in landscape view
     private void toggleStatusBarByOrientation() {
-      Window win = getWindow();
-      if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
-          win.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
-      } else {
-          win.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
-      }
+        Window win = getWindow();
+        if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
+            win.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
+        } else {
+            win.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
+        }
     }
 }