sw/source/core/uibase/docvw/edtwin.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit d4a1b5dc8aff03718625d03ad3ea77750069e196 Author: Jan-Marek Glogowski <[email protected]> Date: Wed Aug 6 17:44:56 2014 +0200 Input fields are always editable... if the document isn't read-only. So backspace should always work in input fields. Regression from 961315f0838197e71e9bd49169afe673466e5eb8. Reviewed-on: https://gerrit.libreoffice.org/10833 Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> (cherry picked from commit 428c45fc779223371818bd11b2b846e1c13ebe47) Conflicts: sw/source/uibase/docvw/edtwin.cxx Change-Id: I06648ab075b198ee7914e7ae60bef87e7ff94f0a Reviewed-on: https://gerrit.libreoffice.org/11779 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Miklos Vajna <[email protected]> diff --git a/sw/source/core/uibase/docvw/edtwin.cxx b/sw/source/core/uibase/docvw/edtwin.cxx index e76b3dc..d4294af 100644 --- a/sw/source/core/uibase/docvw/edtwin.cxx +++ b/sw/source/core/uibase/docvw/edtwin.cxx @@ -1887,8 +1887,7 @@ KEYINPUT_CHECKTABLE_INSDEL: break; case KEY_BACKSPACE: case KEY_BACKSPACE | KEY_SHIFT: - if ( !rSh.HasReadonlySel() - && !rSh.CrsrInsideInputFld() ) + if ( !rSh.HasReadonlySel() ) { bool bDone = false; // try to add comment for code snip:
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
