diff options
author | Bernhard Widl <bernhard.widl@cib.de> | 2017-12-06 10:46:29 +0100 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2017-12-06 14:26:37 +0100 |
commit | 1c41d4e229deb5ae9d5d06df6c8d2585619bc102 (patch) | |
tree | d7c77be76fe99e0d95845191320460b5f094a6d4 | |
parent | 1623caf67a0670f332fc45b9f25aac8818cad9a6 (diff) |
tdf#114093 fixing regression when clicking on fields
Change-Id: I6e5c7e644f26ca85a6c55ec5456add46a7b05404
Reviewed-on: https://gerrit.libreoffice.org/45927
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
-rw-r--r-- | sw/source/uibase/docvw/edtwin.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx index f4c8de1812b6..da86a7d49149 100644 --- a/sw/source/uibase/docvw/edtwin.cxx +++ b/sw/source/uibase/docvw/edtwin.cxx @@ -3371,8 +3371,12 @@ void SwEditWin::MouseButtonDown(const MouseEvent& _rMEvt) case TYP_AUTHORITY : pVFrame->GetBindings().Execute(FN_EDIT_AUTH_ENTRY_DLG); break; - default: + case TYP_INPUTFLD: + case TYP_DROPDOWN: pVFrame->GetBindings().Execute(FN_UPDATE_INPUTFIELDS); + break; + default: + pVFrame->GetBindings().Execute(FN_EDIT_FIELD); } } return; |