diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-07-30 11:12:04 +0100 |
---|---|---|
committer | Xisco Faulí <xiscofauli@libreoffice.org> | 2018-07-30 16:08:28 +0200 |
commit | 15f8f0be29c42ac0c10af679ff5bb51b29bb3bd1 (patch) | |
tree | c0bbafc3910d25166ce2a23db4d6150dd8fb6d1a | |
parent | 6e3db4997a81f4139169ce9d44da6b5e4c4475ed (diff) |
Resolves: tdf#118965 fix input list edit button
regression since...
commit 7d5245848c28f5786258476cd7aa2a4523645de3
Date: Fri Sep 15 17:39:48 2017 +0200
tdf#79877 revert to old behavior when clicking on input fields.
Change-Id: I5e67a8f0c8d2599c139d3d728298c30f4a31c8d1
Reviewed-on: https://gerrit.libreoffice.org/58315
Tested-by: Jenkins
Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
-rw-r--r-- | sw/source/ui/fldui/DropDownFieldDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/fldui/DropDownFieldDialog.cxx b/sw/source/ui/fldui/DropDownFieldDialog.cxx index d467cfa3470e..655f2d60c086 100644 --- a/sw/source/ui/fldui/DropDownFieldDialog.cxx +++ b/sw/source/ui/fldui/DropDownFieldDialog.cxx @@ -117,7 +117,7 @@ bool sw::DropDownFieldDialog::NextButtonPressed() const IMPL_LINK_NOARG(sw::DropDownFieldDialog, EditHdl, weld::Button&, void) { m_pPressedButton = m_xEditPB.get(); - m_xDialog->response(RET_OK); + m_xDialog->response(RET_YES); } IMPL_LINK_NOARG(sw::DropDownFieldDialog, PrevHdl, weld::Button&, void) |