aboutsummaryrefslogtreecommitdiff
path: root/voctocore/lib/videomix.py
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2015-09-02 15:08:49 +0200
committerMaZderMind <git@mazdermind.de>2015-09-02 15:08:49 +0200
commitc61fe2b667079168387376da1c09823967476b21 (patch)
tree4e281f520c228b0525df403706903962d6c84da9 /voctocore/lib/videomix.py
parent46aace37db5c035a6d6b432db261dc7c417456f4 (diff)
refactor commands and notify code
Diffstat (limited to 'voctocore/lib/videomix.py')
-rw-r--r--voctocore/lib/videomix.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/voctocore/lib/videomix.py b/voctocore/lib/videomix.py
index 053219a..e0beefb 100644
--- a/voctocore/lib/videomix.py
+++ b/voctocore/lib/videomix.py
@@ -4,7 +4,6 @@ from gi.repository import Gst
from enum import Enum
from lib.config import Config
-from lib.notifications import notify_all
class CompositeModes(Enum):
fullscreen = 0
@@ -313,7 +312,6 @@ class VideoMix(object):
# swap if required
if self.sourceB == source:
self.sourceB = self.sourceA
- notify_all("signal set video b %s\n" % self.sourceB)
self.sourceA = source
self.recalculateMixerState()
@@ -325,7 +323,6 @@ class VideoMix(object):
# swap if required
if self.sourceA == source:
self.sourceA = self.sourceB
- notify_all("signal set video b %s\n" % self.sourceA)
self.sourceB = source
self.recalculateMixerState()