[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - sw/source

Xisco Fauli anistenis at gmail.com
Tue Dec 12 23:11:56 UTC 2017


 sw/source/uibase/shells/basesh.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit cc77f3cff1d5926c460fd6418397bd6295497c1f
Author: Xisco Fauli <anistenis at gmail.com>
Date:   Mon Dec 4 19:03:45 2017 +0100

    tdf#114219: Show Edit dialog entry in link section
    
    Change-Id: I35c34d427cc5440994fc16ed7e4d307bc95bc533
    Reviewed-on: https://gerrit.libreoffice.org/45817
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Gülşah Köse <gulsah.1004 at gmail.com>
    (cherry picked from commit 2eae1d741ebdc1e2ce1e512960e8152e178e0150)
    Reviewed-on: https://gerrit.libreoffice.org/45930
    Reviewed-by: Xisco Faulí <xiscofauli at libreoffice.org>

diff --git a/sw/source/uibase/shells/basesh.cxx b/sw/source/uibase/shells/basesh.cxx
index 0b2ef68570cf..58ee634b334b 100644
--- a/sw/source/uibase/shells/basesh.cxx
+++ b/sw/source/uibase/shells/basesh.cxx
@@ -1400,7 +1400,8 @@ void SwBaseShell::GetState( SfxItemSet &rSet )
             case FN_EDIT_CURRENT_REGION:
                 //tdf#112808 if cursor is in an index, don't show the edit section.
                 if( !rSh.GetCurrSection() ||
-                    rSh.GetCurrSection()->GetType() != CONTENT_SECTION )
+                    (rSh.GetCurrSection()->GetType() != CONTENT_SECTION &&
+                    rSh.GetCurrSection()->GetType() != FILE_LINK_SECTION ))
                 {
                     rSet.DisableItem(nWhich);
                 }


More information about the Libreoffice-commits mailing list