[Libreoffice-commits] core.git: Branch 'private/swe/libreoffice-5-2+backports' - sw/source
Bernhard Widl
bernhard.widl at cib.de
Wed Dec 6 13:31:06 UTC 2017
sw/source/uibase/docvw/edtwin.cxx | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit aa58e71183f3e154f5c2a5566a6f8c030863d3bc
Author: Bernhard Widl <bernhard.widl at cib.de>
Date: Wed Dec 6 10:46:29 2017 +0100
tdf#114093 fixing regression when clicking on fields
Change-Id: I6e5c7e644f26ca85a6c55ec5456add46a7b05404
Reviewed-on: https://gerrit.libreoffice.org/45927
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
(cherry picked from commit 1c41d4e229deb5ae9d5d06df6c8d2585619bc102)
Reviewed-on: https://gerrit.libreoffice.org/45954
Tested-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx
index a44e657baf38..2ded67656383 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -3422,8 +3422,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;
More information about the Libreoffice-commits
mailing list