| Index: xfa/fwl/core/cfwl_combolist.cpp | 
| diff --git a/xfa/fwl/core/cfwl_combolist.cpp b/xfa/fwl/core/cfwl_combolist.cpp | 
| index e333cda18a8fd083edebc81724172f81e51d80b0..73da1db8fa1febe510d73f57d99a16c4866aabad 100644 | 
| --- a/xfa/fwl/core/cfwl_combolist.cpp | 
| +++ b/xfa/fwl/core/cfwl_combolist.cpp | 
| @@ -87,7 +87,7 @@ void CFWL_ComboList::OnProcessMessage(CFWL_Message* pMessage) { | 
| CFWL_ScrollBar* vertSB = GetVertScrollBar(); | 
| if (IsShowScrollBar(true) && vertSB) { | 
| CFX_RectF rect; | 
| -      vertSB->GetWidgetRect(rect); | 
| +      vertSB->GetWidgetRect(rect, false); | 
| if (rect.Contains(pMsg->m_fx, pMsg->m_fy)) { | 
| pMsg->m_fx -= rect.left; | 
| pMsg->m_fy -= rect.top; | 
| @@ -141,7 +141,7 @@ void CFWL_ComboList::OnDropListMouseMove(CFWL_MsgMouse* pMsg) { | 
| CFWL_ScrollBar* vertSB = GetVertScrollBar(); | 
| if (IsShowScrollBar(true) && vertSB) { | 
| CFX_RectF rect; | 
| -      vertSB->GetWidgetRect(rect); | 
| +      vertSB->GetWidgetRect(rect, false); | 
| if (rect.Contains(pMsg->m_fx, pMsg->m_fy)) | 
| return; | 
| } | 
| @@ -177,7 +177,7 @@ void CFWL_ComboList::OnDropListLButtonUp(CFWL_MsgMouse* pMsg) { | 
| CFWL_ScrollBar* vertSB = GetVertScrollBar(); | 
| if (IsShowScrollBar(true) && vertSB) { | 
| CFX_RectF rect; | 
| -    vertSB->GetWidgetRect(rect); | 
| +    vertSB->GetWidgetRect(rect, false); | 
| if (rect.Contains(pMsg->m_fx, pMsg->m_fy)) | 
| return; | 
| } | 
|  |