summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gui/GraphPortModule.cpp3
-rw-r--r--wscript2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/GraphPortModule.cpp b/src/gui/GraphPortModule.cpp
index 77d8a6fe..9f403d6b 100644
--- a/src/gui/GraphPortModule.cpp
+++ b/src/gui/GraphPortModule.cpp
@@ -52,6 +52,9 @@ GraphPortModule::GraphPortModule(GraphCanvas& canvas,
assert(dynamic_ptr_cast<const GraphModel>(model->parent()));
set_stacked(model->polyphonic());
+ if (model->is_input()) {
+ set_is_source(true);
+ }
model->signal_property().connect(
sigc::mem_fun(this, &GraphPortModule::property_changed));
diff --git a/wscript b/wscript
index 390ca89b..cccfde53 100644
--- a/wscript
+++ b/wscript
@@ -74,7 +74,7 @@ def configure(conf):
autowaf.check_pkg(conf, 'webkit-1.0', uselib_store='WEBKIT',
atleast_version='1.4.0', mandatory=False)
autowaf.check_pkg(conf, 'ganv-1', uselib_store='GANV',
- atleast_version='1.0.0', mandatory=False)
+ atleast_version='1.2.1', mandatory=False)
if not Options.options.no_socket:
conf.check_cc(function_name='socket',
header_name='sys/socket.h',