sw/source/uibase/docvw/HeaderFooterWin.cxx | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit b1f15dd7e5a3b58a9595f9419c3208973d9244ff Author: Jim Raykowski <[email protected]> AuthorDate: Sun Mar 10 23:25:33 2019 -0800 Commit: Heiko Tietze <[email protected]> CommitDate: Wed Mar 13 11:48:07 2019 +0100 tdf#107593 Show the cursor after header/footer delete Change-Id: I978f088fa700791d48a5a65392f980822ac14bd2 Reviewed-on: https://gerrit.libreoffice.org/69032 Tested-by: Jenkins Reviewed-by: Heiko Tietze <[email protected]> diff --git a/sw/source/uibase/docvw/HeaderFooterWin.cxx b/sw/source/uibase/docvw/HeaderFooterWin.cxx index 307704b99362..2b80b4480a13 100644 --- a/sw/source/uibase/docvw/HeaderFooterWin.cxx +++ b/sw/source/uibase/docvw/HeaderFooterWin.cxx @@ -443,6 +443,9 @@ void SwHeaderFooterWin::ExecuteCommand(const OString& rIdent) else if (rIdent == "delete") { rSh.ChangeHeaderOrFooter( rStyleName, m_bIsHeader, false, true ); + if ( IsEmptyHeaderFooter() ) + rSh.ToggleHeaderFooterEdit(); + GrabFocusToDocument(); } else if (rIdent == "insert_pagenumber") { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
