[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - sw/source
Bernhard Widl
bernhard.widl at cib.de
Wed Dec 6 15:53:06 UTC 2017
sw/source/uibase/docvw/edtwin.cxx | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit 72172b4568fb74669fd2269ef29176527363f024
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/45953
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;
More information about the Libreoffice-commits
mailing list