diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-10-10 20:19:19 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-10-10 21:05:05 +0200 |
commit | 821e207f0213a7b6f54e0eeb0fddf1373012c2b2 (patch) | |
tree | 822a61b9b94ea896616e33fc3c58e0ec118724d0 /media-gfx/krita | |
parent | sci-libs/metis: remove unused patch (diff) | |
download | gentoo-821e207f0213a7b6f54e0eeb0fddf1373012c2b2.tar.gz gentoo-821e207f0213a7b6f54e0eeb0fddf1373012c2b2.tar.bz2 gentoo-821e207f0213a7b6f54e0eeb0fddf1373012c2b2.zip |
media-gfx/krita: remove unused patch
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/22549
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'media-gfx/krita')
-rw-r--r-- | media-gfx/krita/files/krita-4.4.5-pykrita-crash-on-exit.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/media-gfx/krita/files/krita-4.4.5-pykrita-crash-on-exit.patch b/media-gfx/krita/files/krita-4.4.5-pykrita-crash-on-exit.patch deleted file mode 100644 index 12ebb2fa95a7..000000000000 --- a/media-gfx/krita/files/krita-4.4.5-pykrita-crash-on-exit.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 86a38621fbbf96edf489a0efd2b9c24c123e2051 Mon Sep 17 00:00:00 2001 -From: Dmitry Kazakov <dimula73@gmail.com> -Date: Tue, 3 Aug 2021 11:57:33 +0300 -Subject: [PATCH] Disable finalizing of the PyQt to prevent crash on exit - -CCBUG:417465 ---- - plugins/extensions/pykrita/plugin/plugin.cpp | 9 ++++----- - 1 file changed, 4 insertions(+), 5 deletions(-) - -diff --git a/plugins/extensions/pykrita/plugin/plugin.cpp b/plugins/extensions/pykrita/plugin/plugin.cpp -index 028798e2f4..cc06c07fbe 100644 ---- a/plugins/extensions/pykrita/plugin/plugin.cpp -+++ b/plugins/extensions/pykrita/plugin/plugin.cpp -@@ -89,11 +89,10 @@ KritaPyQtPlugin::KritaPyQtPlugin(QObject *parent, const QVariantList &) - - KritaPyQtPlugin::~KritaPyQtPlugin() - { -- // XXX: With Qt 5.14, this crashes Krita on exit. See https://bugs.kde.org/show_bug.cgi?id=417465 -- // So, for now, we just don't call finalize... --#if QT_VERSION < QT_VERSION_CHECK(5,14,0) -- PyKrita::finalize(); --#endif -+ /// XXX: Don't call PyKrita::finalize here, because that can result in a crash -+ /// deep inside Qt. See https://bugs.kde.org/show_bug.cgi?id=417465 -+ -+ // PyKrita::finalize(); - } - - #include "plugin.moc" --- -GitLab |