summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2017-12-04 19:03:45 +0100
committerXisco Faulí <xiscofauli@libreoffice.org>2017-12-13 00:10:23 +0100
commitcc77f3cff1d5926c460fd6418397bd6295497c1f (patch)
treed4c71219215e17e6e4134727c4693fda3be6c70c
parent8807e568326679831869329aabf4f941be39f2ab (diff)
tdf#114219: Show Edit dialog entry in link section
Change-Id: I35c34d427cc5440994fc16ed7e4d307bc95bc533 Reviewed-on: https://gerrit.libreoffice.org/45817 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Gülşah Köse <gulsah.1004@gmail.com> (cherry picked from commit 2eae1d741ebdc1e2ce1e512960e8152e178e0150) Reviewed-on: https://gerrit.libreoffice.org/45930 Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
-rw-r--r--sw/source/uibase/shells/basesh.cxx3
1 files changed, 2 insertions, 1 deletions
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);
}