diff options
author | 2020-12-23 22:11:28 +0100 | |
---|---|---|
committer | 2020-12-23 22:32:40 +0100 | |
commit | ee0c9b5bb373695466c06a621be10a7a13eed2d5 (patch) | |
tree | 9e69f39d0fb60bedd6292e6a938dfa8b8b037010 /kde-apps/dolphin/files | |
parent | net-misc/asterisk: bumps for SLOTed lua and func_lock races. (diff) | |
download | gentoo-ee0c9b5bb373695466c06a621be10a7a13eed2d5.tar.gz gentoo-ee0c9b5bb373695466c06a621be10a7a13eed2d5.tar.bz2 gentoo-ee0c9b5bb373695466c06a621be10a7a13eed2d5.zip |
kde-apps/dolphin: Crash fix
Upstream commit c95d7fae79a309ed7f2df393fa20257cb20d54a8
See also: https://mail.kde.org/pipermail/distributions/2020-December/000913.html
KDE-bug: https://bugs.kde.org/show_bug.cgi?id=429628
KDE-bug: https://bugs.kde.org/show_bug.cgi?id=430434
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/dolphin/files')
-rw-r--r-- | kde-apps/dolphin/files/dolphin-20.12.0-crashfix.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/kde-apps/dolphin/files/dolphin-20.12.0-crashfix.patch b/kde-apps/dolphin/files/dolphin-20.12.0-crashfix.patch new file mode 100644 index 00000000000..65350b7ba3e --- /dev/null +++ b/kde-apps/dolphin/files/dolphin-20.12.0-crashfix.patch @@ -0,0 +1,27 @@ +From c95d7fae79a309ed7f2df393fa20257cb20d54a8 Mon Sep 17 00:00:00 2001 +From: Anthony Fieroni <bvbfan@abv.bg> +Date: Sat, 12 Dec 2020 12:36:23 +0200 +Subject: [PATCH] Fix access url navigator while creating new tab in filename + search view BUG: 429628 BUG: 430434 + +Signed-off-by: Anthony Fieroni <bvbfan@abv.bg> +--- + src/dolphinviewcontainer.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp +index 7260d2c4c..8dd309314 100644 +--- a/src/dolphinviewcontainer.cpp ++++ b/src/dolphinviewcontainer.cpp +@@ -390,7 +390,7 @@ void DolphinViewContainer::setSearchModeEnabled(bool enabled) + m_searchBox->setVisible(enabled); + + if (enabled) { +- const QUrl& locationUrl = m_urlNavigatorConnected->locationUrl(); ++ const QUrl& locationUrl = m_urlNavigator->locationUrl(); + m_searchBox->fromSearchUrl(locationUrl); + } + +-- +GitLab + |