mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-22 15:50:01 +01:00
client / vj-api - 20cts of comments
This commit is contained in:
@@ -4249,6 +4249,7 @@ void load_effectlist_info()
|
|||||||
gchar *name = _utf8str( _effect_get_description( ec->id ) );
|
gchar *name = _utf8str( _effect_get_description( ec->id ) );
|
||||||
if( name != NULL)
|
if( name != NULL)
|
||||||
{
|
{
|
||||||
|
// tree_alphalist
|
||||||
if( strncasecmp( "alpha:" , ec->description, 6 ) == 0 ) {
|
if( strncasecmp( "alpha:" , ec->description, 6 ) == 0 ) {
|
||||||
gtk_list_store_append( store3, &iter );
|
gtk_list_store_append( store3, &iter );
|
||||||
int len = strlen( ec->description );
|
int len = strlen( ec->description );
|
||||||
@@ -4260,6 +4261,7 @@ void load_effectlist_info()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
// tree_effectmixlist
|
||||||
if( _effect_get_mix(ec->id) > 0 )
|
if( _effect_get_mix(ec->id) > 0 )
|
||||||
{
|
{
|
||||||
gtk_list_store_append( store2, &iter );
|
gtk_list_store_append( store2, &iter );
|
||||||
@@ -4268,6 +4270,7 @@ void load_effectlist_info()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
// tree_effectlist
|
||||||
gtk_list_store_append( store, &iter );
|
gtk_list_store_append( store, &iter );
|
||||||
gtk_list_store_set( store, &iter, FX_STRING, name, -1 );
|
gtk_list_store_set( store, &iter, FX_STRING, name, -1 );
|
||||||
vevo_property_set( fx_list_, name, LIVIDO_ATOM_TYPE_INT, 1, &(ec->id));
|
vevo_property_set( fx_list_, name, LIVIDO_ATOM_TYPE_INT, 1, &(ec->id));
|
||||||
|
|||||||
Reference in New Issue
Block a user