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

Commit 729a546b authored by Tanya Finkel's avatar Tanya Finkel Committed by Gerrit - the friendly Code Review server
Browse files

Gallery2: Fix Movie player crash for SBC8016

Fixed 1080p Movies crash for SBC8016 platform.

Change-Id: I20da1f5a5f20ed7402ba65453d5168561ee1a627
parent 303f6ecd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -798,7 +798,7 @@ public class MovieActivity extends Activity {
            Log.v(TAG, "setActionBarTitle(" + title + ")");
        }
        ActionBar actionBar = getActionBar();
        if (title != null) {
        if (title != null && actionBar != null) {
            actionBar.setTitle(title);
        }
    }