From 5233d129fca917f806f19d2df8263e93c4edec4d Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A9ven=20Car?= Date: Fri, 29 Nov 2024 09:40:53 +0100 Subject: [PATCH] When marking recent folders access specify mimeType CCBUG: 496179 --- CMakeLists.txt | 2 +- src/dolphinmainwindow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bc00ca981..12808bea7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE project(Dolphin VERSION ${RELEASE_SERVICE_VERSION}) set(QT_MIN_VERSION "6.4.0") -set(KF6_MIN_VERSION "6.2.0") +set(KF6_MIN_VERSION "6.9.0") # use C++20 like KF6 itself set(CMAKE_CXX_STANDARD 20) diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index e52494c0a..50c7f2e0e 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -385,7 +385,7 @@ void DolphinMainWindow::changeUrl(const QUrl &url) updateGoActions(); // will signal used urls to activities manager, too - m_recentFiles->addUrl(url); + m_recentFiles->addUrl(url, QString(), "inode/directory"); Q_EMIT urlChanged(url); } -- 2.47.3