diff --git a/pysstv/examples/gimp-plugin.py b/pysstv/examples/gimp-plugin.py index 2dc758c..eee2d9c 100755 --- a/pysstv/examples/gimp-plugin.py +++ b/pysstv/examples/gimp-plugin.py @@ -9,6 +9,7 @@ from tempfile import mkstemp from PIL import Image, ImageTk from Tkinter import Tk, Label, Button from pysstv import __main__ as pysstv_main +from pysstv.examples.pyaudio_sstv import PyAudioSSTV import os MODULE_MAP = pysstv_main.build_module_map() @@ -19,7 +20,7 @@ class Transmitter(object): self.root = root def start_tx(self, e): - pdb.gimp_message("TX!") # TODO + PyAudioSSTV(self.sstv).execute() def close(self, e): self.root.destroy()