Add missing popover for fontwork properties popup controllers
Change-Id: I293a88a681b55e123c45edc9c3034b73417d7af5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113418 Tested-by: Jenkins Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
This commit is contained in:
parent
c7a46738ef
commit
ac8a456d7a
1 changed files with 12 additions and 0 deletions
|
@ -424,6 +424,12 @@ void SAL_CALL FontworkAlignmentControl::initialize( const css::uno::Sequence< cs
|
|||
{
|
||||
svt::PopupWindowController::initialize( aArguments );
|
||||
|
||||
if (m_pToolbar)
|
||||
{
|
||||
mxPopoverContainer.reset(new ToolbarPopupContainer(m_pToolbar));
|
||||
m_pToolbar->set_item_popover(m_aCommandURL.toUtf8(), mxPopoverContainer->getTopLevel());
|
||||
}
|
||||
|
||||
ToolBox* pToolBox = nullptr;
|
||||
ToolBoxItemId nId;
|
||||
if ( getToolboxId( nId, &pToolBox ) )
|
||||
|
@ -698,6 +704,12 @@ void SAL_CALL FontworkCharacterSpacingControl::initialize( const css::uno::Seque
|
|||
{
|
||||
svt::PopupWindowController::initialize( aArguments );
|
||||
|
||||
if (m_pToolbar)
|
||||
{
|
||||
mxPopoverContainer.reset(new ToolbarPopupContainer(m_pToolbar));
|
||||
m_pToolbar->set_item_popover(m_aCommandURL.toUtf8(), mxPopoverContainer->getTopLevel());
|
||||
}
|
||||
|
||||
ToolBox* pToolBox = nullptr;
|
||||
ToolBoxItemId nId;
|
||||
if ( getToolboxId( nId, &pToolBox ) )
|
||||
|
|
Loading…
Reference in a new issue