diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-04-15 16:57:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-04-15 20:13:48 +0200 |
commit | cac8694feab1ccb422294ed3e2f8b682e15835fb (patch) | |
tree | a4ee95d440c5d3b1dc7670da31d61389d9e10fe6 /basctl/source | |
parent | ff8288b98f6975c7fc9f36155d26a44e8c625f94 (diff) |
tdf#126828 hide macro organize dialog before launching macro editing
so the macro editor isn't forced behind the window with an active dialog
Change-Id: Iae89f6910a8183bcf01872eef71c04bc993f1550
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92307
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'basctl/source')
-rw-r--r-- | basctl/source/basicide/macrodlg.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/basctl/source/basicide/macrodlg.cxx b/basctl/source/basicide/macrodlg.cxx index 0fcc033ca827..2101a22efb5a 100644 --- a/basctl/source/basicide/macrodlg.cxx +++ b/basctl/source/basicide/macrodlg.cxx @@ -631,6 +631,8 @@ IMPL_LINK(MacroChooser, ButtonHdl, weld::Button&, rButton, void) if (m_xMacroBox->get_selected(m_xMacroBoxIter.get())) aInfoItem.SetMethod(m_xMacroBox->get_text(*m_xMacroBoxIter)); StoreMacroDescription(); + m_xDialog->hide(); // tdf#126828 dismiss dialog before opening new window + SfxAllItemSet aArgs( SfxGetpApp()->GetPool() ); SfxRequest aRequest( SID_BASICIDE_APPEAR, SfxCallMode::SYNCHRON, aArgs ); SfxGetpApp()->ExecuteSlot( aRequest ); |