Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Followup bug 1025553
  • Loading branch information
tmeshkova committed Jun 22, 2014
1 parent 21929fc commit 4d13ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion embedding/embedlite/EmbedLiteView.cpp
Expand Up @@ -300,7 +300,7 @@ void
EmbedLiteView::SetGLViewTransform(gfxMatrix matrix)
{
NS_ENSURE_TRUE(mViewImpl, );
gfx::Matrix m(matrix.xx, matrix.yx, matrix.xy, matrix.yy, matrix.x0, matrix.y0);
gfx::Matrix m(matrix._11, matrix._12, matrix._21, matrix._22, matrix._31, matrix._32);
mViewImpl->SetGLViewTransform(m);
}

Expand Down

0 comments on commit 4d13ec0

Please sign in to comment.