From 8ea3c8add8f5449a1f2de6e8082659852a4fd3d1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 14 Feb 2015 10:06:44 +0000 Subject: Indicate sequence ports with an arrow tag. git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@5568 a436a847-0d15-0410-975c-d299462d15a1 --- src/port.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src') diff --git a/src/port.c b/src/port.c index 4a4fcd2..48fcc51 100644 --- a/src/port.c +++ b/src/port.c @@ -28,9 +28,6 @@ static const double PORT_LABEL_HPAD = 2.0; static const double PORT_LABEL_VPAD = 1.0; -static const guchar check_off[] = { 0xE2, 0x98, 0x90, 0 }; -static const guchar check_on[] = { 0xE2, 0x98, 0x91, 0 }; - static void ganv_port_update_control_slider(GanvPort* port, float value, gboolean force); @@ -629,12 +626,6 @@ void ganv_port_set_control_value(GanvPort* port, float value) { - GanvPortImpl* impl = port->impl; - - if (impl->control && impl->control->is_toggle) { - ganv_port_set_value_label( - port, (const char*)((value == 0.0f) ? check_off : check_on)); - } ganv_port_update_control_slider(port, value, FALSE); } -- cgit v1.2.1