svx/source/tbxctrls/tbcontrl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit dcca81a4ecc0dbbb9d2f399c5a59dac0524778d2 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Thu Oct 6 17:30:23 2022 +0100 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Thu Oct 6 20:58:30 2022 +0200 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 <caol...@redhat.com> Reviewed-by: Caolán McNamara <caol...@redhat.com> 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();