diff options
author | David Robillard <d@drobilla.net> | 2015-02-14 10:06:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-02-14 10:06:44 +0000 |
commit | 8ea3c8add8f5449a1f2de6e8082659852a4fd3d1 (patch) | |
tree | f64725d8ae2efae00a6197bf6dbb66811a997f75 /src | |
parent | f99047dc399877ef24826e40d38d5b5b9f8d0b6b (diff) | |
download | ganv-8ea3c8add8f5449a1f2de6e8082659852a4fd3d1.tar.gz ganv-8ea3c8add8f5449a1f2de6e8082659852a4fd3d1.tar.bz2 ganv-8ea3c8add8f5449a1f2de6e8082659852a4fd3d1.zip |
Indicate sequence ports with an arrow tag.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@5568 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/port.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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); } |