Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41caa149 authored by Jorge Ruesga's avatar Jorge Ruesga
Browse files

CMFileManager: Overlay activity must use overlay style

Use FileManager.Theme.Holo.Light.Overlay and FileManager.Theme.Holo.Overlay for overlay
activities

Change-Id: I722b77e85753a81d360c87abc6b377acdbd147fd
parent c5ad23bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ public class ChangeLogActivity extends Activity implements OnCancelListener, OnD
     */
    void applyTheme() {
        Theme theme = ThemeManager.getCurrentTheme(this);
        theme.setBaseTheme(this, false);
        theme.setBaseTheme(this, true);
    }

}
+1 −1
Original line number Diff line number Diff line
@@ -366,7 +366,7 @@ public class PickerActivity extends Activity
     */
    void applyTheme() {
        Theme theme = ThemeManager.getCurrentTheme(this);
        theme.setBaseTheme(this, false);
        theme.setBaseTheme(this, true);

        // View
        theme.setBackgroundDrawable(this, this.mRootView, "background_drawable"); //$NON-NLS-1$
+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ public class ShortcutActivity extends Activity implements OnCancelListener, OnDi
     */
    void applyTheme() {
        Theme theme = ThemeManager.getCurrentTheme(this);
        theme.setBaseTheme(this, false);
        theme.setBaseTheme(this, true);
    }

}