From 8f5f234b6a81f96fa156257531c20b1b5bd17cfe Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 12 May 2012 03:43:53 +0000 Subject: Don't send selection information to the server. This also happens to fix some truly bizarre problems with pasting. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4368 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/PatchPortModule.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/gui/PatchPortModule.cpp') diff --git a/src/gui/PatchPortModule.cpp b/src/gui/PatchPortModule.cpp index 5ea90f55..e716a12d 100644 --- a/src/gui/PatchPortModule.cpp +++ b/src/gui/PatchPortModule.cpp @@ -152,10 +152,6 @@ PatchPortModule::property_changed(const URI& key, const Atom& value) } else if (value.type() == uris.forge.Bool) { if (key == uris.ingen_polyphonic) { set_stacked(value.get_bool()); - } else if (key == uris.ingen_selected) { - if (value.get_bool() != get_selected()) { - set_selected(value.get_bool()); - } } } } @@ -165,11 +161,6 @@ PatchPortModule::set_selected(gboolean b) { if (b != get_selected()) { Module::set_selected(b); - if (app().signal()) - app().interface()->set_property( - _model->path(), - app().uris().ingen_selected, - app().forge().make(b)); } } -- cgit v1.2.1