Index: xfa/fwl/core/cfwl_combolist.cpp |
diff --git a/xfa/fwl/core/cfwl_combolist.cpp b/xfa/fwl/core/cfwl_combolist.cpp |
index ad80ac04757fa1da27f5a6e0f333131b137d90fb..7532da26d7fc6c2274c3e336bb67309019fe55c6 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; |
} |