Fixing wrong message sent when surface params are applied

Bug: 123874711
Test: Verified jar with Launcher
Change-Id: I966bfc5bd87396916dbacdf894dc6cca26a03593
This commit is contained in:
Sunny Goyal
2019-04-25 11:53:19 -07:00
parent 5a8ef91d16
commit e951976e80

View File

@@ -105,7 +105,8 @@ public class SyncRtSurfaceTransactionApplierCompat {
}
t.setEarlyWakeup();
t.apply();
mApplyHandler.sendEmptyMessage(toApplySeqNo);
Message.obtain(mApplyHandler, MSG_UPDATE_SEQUENCE_NUMBER, toApplySeqNo, 0)
.sendToTarget();
}
});