[Libreoffice-commits] core.git: sw/source
Jan-Marek Glogowski
glogow at fbihome.de
Sun Aug 17 14:21:23 PDT 2014
sw/source/uibase/docvw/edtwin.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 428c45fc779223371818bd11b2b846e1c13ebe47
Author: Jan-Marek Glogowski <glogow at fbihome.de>
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.
Change-Id: I06648ab075b198ee7914e7ae60bef87e7ff94f0a
Reviewed-on: https://gerrit.libreoffice.org/10833
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx
index d482be3..7cffc4b3 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -1892,8 +1892,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:
More information about the Libreoffice-commits
mailing list