aboutsummaryrefslogtreecommitdiffstats
path: root/community/virt-manager/dont-double-create-spice-display.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-29 00:25:35 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-29 00:31:53 +0100
commitd420552f02af2ad6a15cf3a70b76bf86b222c07e (patch)
tree8ab7137ed9264312aee69292d009509e70357ea7 /community/virt-manager/dont-double-create-spice-display.patch
parent78a6ed13e4b5cd182f28be18694d543ae179446b (diff)
downloadaports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.bz2
aports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.xz
Remove more stale patches from community/
Diffstat (limited to 'community/virt-manager/dont-double-create-spice-display.patch')
-rw-r--r--community/virt-manager/dont-double-create-spice-display.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/community/virt-manager/dont-double-create-spice-display.patch b/community/virt-manager/dont-double-create-spice-display.patch
deleted file mode 100644
index c9a3a9c080..0000000000
--- a/community/virt-manager/dont-double-create-spice-display.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 5f497cba41785fc5532633811001958f99573f9b Mon Sep 17 00:00:00 2001
-From: Cole Robinson <crobinso@redhat.com>
-Date: Tue, 09 Jul 2013 21:50:05 +0000
-Subject: console: Don't double create spice display
-
-I can't reproduce, but a couple gentoo users have issues that this
-fixes:
-
-https://bugzilla.redhat.com/show_bug.cgi?id=981975
----
-diff --git a/virtManager/console.py b/virtManager/console.py
-index 51175c0..553c022 100644
---- a/virtManager/console.py
-+++ b/virtManager/console.py
-@@ -536,7 +536,8 @@ class SpiceViewer(Viewer):
- channel.connect_after("channel-event", self._main_channel_event_cb)
- return
-
-- if type(channel) == SpiceClientGLib.DisplayChannel:
-+ if (type(channel) == SpiceClientGLib.DisplayChannel and
-+ not self.display):
- channel_id = channel.get_property("channel-id")
-
- if channel_id != 0:
---
-cgit v0.9.1