summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchView.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-10 00:21:37 +0000
committerDavid Robillard <d@drobilla.net>2009-05-10 00:21:37 +0000
commit9ea901df533b0326e715ced10b9e9970239da515 (patch)
tree811f2f23140e656673c1b237fd70486f1d8e2058 /src/gui/PatchView.cpp
parent7886e32dfac16fad93172b72932d89e8cf254e93 (diff)
downloadingen-9ea901df533b0326e715ced10b9e9970239da515.tar.gz
ingen-9ea901df533b0326e715ced10b9e9970239da515.tar.bz2
ingen-9ea901df533b0326e715ced10b9e9970239da515.zip
Show current value for all ports (not just plugin node ports) in status bar on hover.
Fix ticket #358. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1970 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchView.cpp')
-rw-r--r--src/gui/PatchView.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gui/PatchView.cpp b/src/gui/PatchView.cpp
index 31a89375..c441a64a 100644
--- a/src/gui/PatchView.cpp
+++ b/src/gui/PatchView.cpp
@@ -163,10 +163,8 @@ void
PatchView::canvas_item_entered(Gnome::Canvas::Item* item)
{
NodeModule* m = dynamic_cast<NodeModule*>(item);
- if (m) {
+ if (m)
signal_object_entered.emit(m->node().get());
- return;
- }
Port* p = dynamic_cast<Port*>(item);
if (p)