[Libreoffice-commits] core.git: sw/source
Niklas Johansson
sleeping.pillow at gmail.com
Fri Jan 16 01:17:26 PST 2015
sw/source/uibase/shells/textsh1.cxx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
New commits:
commit 4f4dcd527ee4ef7365389b5a70d0f199263628e7
Author: Niklas Johansson <sleeping.pillow at gmail.com>
Date: Thu Jan 15 14:43:21 2015 +0100
fdo#86844 - CONTEXT MENU: Remove hyperlink not accessible
At the moment Remove hyperlink is only shown when text is selected
together with a hyperlink but not when you right click directly on
a link. Let's reuse the logic from when edit hyperlink should be shown
and append it to the currently working case where text and link is
selected.
Change-Id: I2524f1c3037f3101d24e592eadf2e7d5d66ab4f9
Reviewed-on: https://gerrit.libreoffice.org/13926
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sw/source/uibase/shells/textsh1.cxx b/sw/source/uibase/shells/textsh1.cxx
index 9a6bfa6..970fad9 100644
--- a/sw/source/uibase/shells/textsh1.cxx
+++ b/sw/source/uibase/shells/textsh1.cxx
@@ -1674,7 +1674,9 @@ void SwTextShell::GetState( SfxItemSet &rSet )
rSh.GetCurAttr(aSet);
// If a hyperlink is selected, either alone or along with other text...
- if(aSet.GetItemState( RES_TXTATR_INETFMT, true ) != SfxItemState::DONTCARE || rSh.HasReadonlySel())
+ if ((aSet.GetItemState(RES_TXTATR_INETFMT, true) < SfxItemState::SET &&
+ aSet.GetItemState(RES_TXTATR_INETFMT, true) != SfxItemState::DONTCARE) ||
+ rSh.HasReadonlySel())
{
rSet.DisableItem(nWhich);
}
More information about the Libreoffice-commits
mailing list