From ebc5be60f0c7db0e6d0387cc6668b12232237751 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 1 Dec 2011 23:08:55 +0000 Subject: Move color stuff down to C level. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3733 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/App.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/App.cpp') diff --git a/src/gui/App.cpp b/src/gui/App.cpp index 24e61e1e..dac6eeae 100644 --- a/src/gui/App.cpp +++ b/src/gui/App.cpp @@ -239,7 +239,7 @@ App::port_activity(Port* port) if (inserted.second) inserted.first->second = false; - port->set_highlighted(true, false, true, false); + port->set_highlighted(true); } void @@ -260,7 +260,7 @@ App::animate() ++next; if ((*i).second) { // saw it last time, unhighlight and pop - (*i).first->set_highlighted(false, false, true, false); + (*i).first->set_highlighted(false); _activity_ports.erase(i); } else { (*i).second = true; -- cgit v1.2.1