summaryrefslogtreecommitdiffstats
path: root/src/ganv_test.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-04-28 01:22:45 +0000
committerDavid Robillard <d@drobilla.net>2014-04-28 01:22:45 +0000
commit9a0bd2a11c9507c8bf64cf54698a5cc98accb6f0 (patch)
tree24a8d674f2f76403de474c081567827f35686000 /src/ganv_test.py
parented45810d4a97b68c83068627f1443fa49d6eedc8 (diff)
downloadganv-9a0bd2a11c9507c8bf64cf54698a5cc98accb6f0.tar.gz
ganv-9a0bd2a11c9507c8bf64cf54698a5cc98accb6f0.tar.bz2
ganv-9a0bd2a11c9507c8bf64cf54698a5cc98accb6f0.zip
Fix comments for GIR.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@5382 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ganv_test.py')
-rwxr-xr-xsrc/ganv_test.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ganv_test.py b/src/ganv_test.py
index 1488224..1ea53c2 100755
--- a/src/ganv_test.py
+++ b/src/ganv_test.py
@@ -9,12 +9,12 @@ win.connect("destroy", lambda obj: Gtk.main_quit())
canvas = Ganv.Canvas.new(1024, 768)
module = Ganv.Module(canvas=canvas,
label="Test")
-iport = Ganv.Port(module=module,
- is_input=True,
- label="In")
-oport = Ganv.Port(module=module,
- is_input=False,
- label="In")
+# iport = Ganv.Port(module=module,
+# is_input=True,
+# label="In")
+# oport = Ganv.Port(module=module,
+# is_input=False,
+# label="In")
win.add(canvas)
win.show_all()