client / vj-api - 20cts of comments

This commit is contained in:
[d.j.a.y] Jerome Blanchi
2015-11-16 23:35:49 +01:00
parent 3655f9278c
commit d206d1160f

View File

@@ -4249,6 +4249,7 @@ void load_effectlist_info()
gchar *name = _utf8str( _effect_get_description( ec->id ) );
if( name != NULL)
{
// tree_alphalist
if( strncasecmp( "alpha:" , ec->description, 6 ) == 0 ) {
gtk_list_store_append( store3, &iter );
int len = strlen( ec->description );
@@ -4260,6 +4261,7 @@ void load_effectlist_info()
}
else
{
// tree_effectmixlist
if( _effect_get_mix(ec->id) > 0 )
{
gtk_list_store_append( store2, &iter );
@@ -4268,6 +4270,7 @@ void load_effectlist_info()
}
else
{
// tree_effectlist
gtk_list_store_append( store, &iter );
gtk_list_store_set( store, &iter, FX_STRING, name, -1 );
vevo_property_set( fx_list_, name, LIVIDO_ATOM_TYPE_INT, 1, &(ec->id));