| Index: xfa/fwl/cfwl_widgetmgr.cpp
|
| diff --git a/xfa/fwl/cfwl_widgetmgr.cpp b/xfa/fwl/cfwl_widgetmgr.cpp
|
| index f01c02b6b8b85139b95050ff80f4a58d987fda97..e7eca100cc165c724b37c5ca9e15e82f69e63e2b 100644
|
| --- a/xfa/fwl/cfwl_widgetmgr.cpp
|
| +++ b/xfa/fwl/cfwl_widgetmgr.cpp
|
| @@ -298,7 +298,6 @@ CFWL_Widget* CFWL_WidgetMgr::GetWidgetAtPoint(CFWL_Widget* parent,
|
| x1 = x;
|
| y1 = y;
|
| CFX_Matrix matrixOnParent;
|
| - child->GetMatrix(matrixOnParent, false);
|
| CFX_Matrix m;
|
| m.SetIdentity();
|
| m.SetReverse(matrixOnParent);
|
| @@ -528,7 +527,7 @@ void CFWL_WidgetMgr::DrawChild(CFWL_Widget* parent,
|
| CFX_Matrix widgetMatrix;
|
| CFX_RectF clipBounds(rtWidget);
|
| if (!bFormDisable)
|
| - child->GetMatrix(widgetMatrix, true);
|
| + widgetMatrix = child->GetMatrix();
|
| if (pMatrix)
|
| widgetMatrix.Concat(*pMatrix);
|
|
|
|
|