summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pulsecaster/ui.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/pulsecaster/ui.py b/pulsecaster/ui.py
index b60a5d1..fbcfe04 100644
--- a/pulsecaster/ui.py
+++ b/pulsecaster/ui.py
@@ -35,7 +35,7 @@ def _debugPrint(text):
print (text)
class PulseCatcherUI:
- def __init__(self, runlib=True):
+ def __init__(self):
self.xml = gtk.glade.XML(fname)
self.logo = gtk.gdk.pixbuf_new_from_file(logofile)
@@ -90,10 +90,6 @@ class PulseCatcherUI:
# Fill the combo boxes initially
self.repop_sources()
- if not runlib:
- self.main.show_all()
- gtk.main()
-
def repop_sources(self, *args):
self.sources = self.pa.pulse_source_list()
@@ -128,4 +124,6 @@ class PulseCatcherUI:
if __name__ == '__main__':
- pulseCatcher = PulseCatcherUI(False)
+ pulseCatcher = PulseCatcherUI()
+ pulseCatcher.main.show_all()
+ gtk.main()