Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/record.py
diff options
context:
space:
mode:
Diffstat (limited to 'record.py')
-rwxr-xr-xrecord.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/record.py b/record.py
index 9c1db56..92a5fcf 100755
--- a/record.py
+++ b/record.py
@@ -37,6 +37,7 @@ from model import Model
from ui import UI
from recordtube import RecordTube
from glive import Glive
+from glivex import GliveX
from gplay import Gplay
from greplay import Greplay
from recorded import Recorded
@@ -74,6 +75,7 @@ class Record(activity.Activity):
#the main classes
self.m = Model(self)
self.glive = Glive(self)
+ self.glivex = GliveX(self)
self.gplay = Gplay()
self.ui = UI(self)
@@ -131,6 +133,7 @@ class Record(activity.Activity):
self.m.doShutter()
else:
self.glive.stop()
+ self.glivex.stop()
def restartPipes(self):
@@ -153,6 +156,8 @@ class Record(activity.Activity):
self.gplay.stop( )
if (self.glive != None):
self.glive.stop( )
+ if (self.glivex != None):
+ self.glivex.stop( )
#this calls write_file
activity.Activity.close( self )