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

Commit 3243cbc9 authored by Mathias Agopian's avatar Mathias Agopian Committed by Android Git Automerger
Browse files

am b99e81ab: am 7e6064ad: Merge "fix [3008290] passion GB surface does not...

am b99e81ab: am 7e6064ad: Merge "fix [3008290] passion GB surface does not send surfaceChanged notification after size change." into gingerbread

Merge commit 'b99e81ab'

* commit 'b99e81ab':
  fix [3008290] passion GB surface does not send surfaceChanged notification after size change.
parents bd6b6bab b99e81ab
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -288,9 +288,10 @@ public class SurfaceView extends View {
    }
    
    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
    protected boolean setFrame(int left, int top, int right, int bottom) {
        boolean result = super.setFrame(left, top, right, bottom);
        updateWindow(false, false);
        return result;
    }

    @Override