sfx2/source/dialog/backingwindow.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit d198b7431df31a3868f7b8d3daea427e8a4ac610 Author: Andreas Heinisch <[email protected]> AuthorDate: Wed May 21 14:29:02 2025 +0200 Commit: Xisco Fauli <[email protected]> CommitDate: Tue Jun 10 08:49:56 2025 +0200 tdf#166349 - Reload recent documents to show pinned items After clearing the recent document list, reload the start center in order to show pinned items. Change-Id: I248d28aaf8f4f9a823aab7630e37e8a410848433 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/185608 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <[email protected]> (cherry picked from commit f7e781292fc97b1d5e845c219c59bd01833da5ee) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/185643 Reviewed-by: Xisco Fauli <[email protected]> diff --git a/sfx2/source/dialog/backingwindow.cxx b/sfx2/source/dialog/backingwindow.cxx index fef5ba5044ff..3146cae95b72 100644 --- a/sfx2/source/dialog/backingwindow.cxx +++ b/sfx2/source/dialog/backingwindow.cxx @@ -802,5 +802,7 @@ void BackingWindow::dispatchURL( const OUString& i_rURL, void BackingWindow::clearRecentFileList() { mxAllRecentThumbnails->Clear(); + // tdf#166349 - reload recent documents to show pinned items + mxAllRecentThumbnails->Reload(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab:*/
