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.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/record.py b/record.py
index 92a5fcf..e8bd67a 100755
--- a/record.py
+++ b/record.py
@@ -37,7 +37,6 @@ 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
@@ -75,7 +74,6 @@ 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)
@@ -133,7 +131,6 @@ class Record(activity.Activity):
self.m.doShutter()
else:
self.glive.stop()
- self.glivex.stop()
def restartPipes(self):
@@ -155,9 +152,8 @@ class Record(activity.Activity):
if (self.gplay != None):
self.gplay.stop( )
if (self.glive != None):
+ self.glive.setPipeType( self.glive.PIPETYPE_SUGAR_JHBUILD )
self.glive.stop( )
- if (self.glivex != None):
- self.glivex.stop( )
#this calls write_file
activity.Activity.close( self )