summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/ui/view/drviews2.cxx39
1 files changed, 37 insertions, 2 deletions
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx
index 0c0f17717bf8..988fae4fc746 100644
--- a/sd/source/ui/view/drviews2.cxx
+++ b/sd/source/ui/view/drviews2.cxx
@@ -1151,13 +1151,48 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq)
if (mpDrawView->IsTextEdit())
{
Outliner* pOutl = mpDrawView->GetTextEditOutliner();
- if (pOutl)
+ OutlinerView* pOLV = mpDrawView->GetTextEditOutlinerView();
+ if (pOutl && pOLV)
{
- pOutl->RemoveFields(checkSvxFieldData<SvxURLField>);
+ const SvxFieldItem* pFieldItem = pOLV->GetFieldAtSelection();
+ if (pFieldItem)
+ {
+ // Make sure the whole field is selected
+ ESelection aSel = pOLV->GetSelection();
+ if (aSel.nStartPos == aSel.nEndPos)
+ {
+ aSel.nEndPos++;
+ pOLV->SetSelection(aSel);
+ }
+ }
+ if (!pFieldItem)
+ {
+ // Cursor probably behind the field - extend selection to select the field
+ ESelection aSel = pOLV->GetSelection();
+ if (aSel.nStartPos == aSel.nEndPos)
+ {
+ aSel.nStartPos--;
+ pOLV->SetSelection(aSel);
+ pFieldItem = pOLV->GetFieldAtSelection();
+ }
+ }
+
+ if (pFieldItem)
+ {
+ ESelection aSel = pOLV->GetSelection();
+ const SvxFieldData* pField = pFieldItem->GetField();
+ if( auto pUrlField = dynamic_cast< const SvxURLField *>( pField ) )
+ {
+ pOutl->QuickInsertText(pUrlField->GetRepresentation(), aSel);
+ }
+ }
}
}
}
+ Cancel();
+ rReq.Done ();
break;
+
case SID_SET_DEFAULT:
{
std::unique_ptr<SfxItemSet> pSet;