summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-10-06 17:30:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2022-10-06 20:58:30 +0200
commitdcca81a4ecc0dbbb9d2f399c5a59dac0524778d2 (patch)
tree748b16e21112ca7d530f0369b0743fc1f96a8f21 /svx
parenta05d1506038a4ca6036d6d0195278c02f51504ec (diff)
Resolves: tdf#150501 borders and lines should be tearable
Change-Id: I683dcf5cdf2289fde28be4990c10525fd60b88e1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141031 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/tbxctrls/tbcontrl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx
index d61e784e3034..173d6b3e4f32 100644
--- a/svx/source/tbxctrls/tbcontrl.cxx
+++ b/svx/source/tbxctrls/tbcontrl.cxx
@@ -3850,7 +3850,7 @@ VclPtr<vcl::Window> SvxFrameToolBoxControl::createVclPopupWindow( vcl::Window* p
if ( m_aCommandURL == ".uno:LineStyle" )
{
mxInterimPopover = VclPtr<InterimToolbarPopup>::Create(getFrameInterface(), pParent,
- std::make_unique<SvxLineWindow_Impl>(this, pParent->GetFrameWeld()));
+ std::make_unique<SvxLineWindow_Impl>(this, pParent->GetFrameWeld()), true);
mxInterimPopover->Show();
@@ -3860,7 +3860,7 @@ VclPtr<vcl::Window> SvxFrameToolBoxControl::createVclPopupWindow( vcl::Window* p
}
mxInterimPopover = VclPtr<InterimToolbarPopup>::Create(getFrameInterface(), pParent,
- std::make_unique<SvxFrameWindow_Impl>(this, pParent->GetFrameWeld()));
+ std::make_unique<SvxFrameWindow_Impl>(this, pParent->GetFrameWeld()), true);
mxInterimPopover->Show();