| Index: xfa/fwl/core/ifwl_comboboxproxy.cpp
|
| diff --git a/xfa/fwl/core/ifwl_comboboxproxy.cpp b/xfa/fwl/core/ifwl_comboboxproxy.cpp
|
| index c8d1f793c65ccc16210fbc08ef94a3e8a58d4395..e7ce1bd77dd6d9d93b9f1d42a29cafa325111c0a 100644
|
| --- a/xfa/fwl/core/ifwl_comboboxproxy.cpp
|
| +++ b/xfa/fwl/core/ifwl_comboboxproxy.cpp
|
| @@ -36,8 +36,6 @@ void IFWL_ComboBoxProxy::OnProcessMessage(CFWL_Message* pMessage) {
|
| case FWL_MouseCommand::LeftButtonUp:
|
| OnLButtonUp(pMsg);
|
| break;
|
| - case FWL_MouseCommand::Move:
|
| - break;
|
| default:
|
| break;
|
| }
|
| @@ -97,7 +95,7 @@ void IFWL_ComboBoxProxy::OnLButtonUp(CFWL_MsgMouse* pMsg) {
|
| GetWidgetRect(rect);
|
| rect.left = rect.top = 0;
|
| if (!rect.Contains(pMsg->m_fx, pMsg->m_fy) &&
|
| - m_pComboBox->IsDropListShowed()) {
|
| + m_pComboBox->IsDropListVisible()) {
|
| m_pComboBox->ShowDropList(false);
|
| }
|
| } else {
|
|
|