sw/source/uibase/docvw/edtwin.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 428c45fc779223371818bd11b2b846e1c13ebe47
Author: Jan-Marek Glogowski <glo...@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 <caol...@redhat.com>
    Tested-by: Caolán McNamara <caol...@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:
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to