mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-21 23:30:00 +01:00
Reloaded / Anim Fx : Fix anim stop kf_none --> kf_pXX
Description of the bug : -- When animating (curve_toggleentry_toggled) a parameter, kf_none is selected (should be fixed also), selecting again any kf_pXX : kf animation is stopped * Fix kf animation stop
This commit is contained in:
@@ -2800,15 +2800,18 @@ void curve_panel_toggleentry_toggled( GtkWidget *widget, gpointer user_data)
|
||||
|
||||
void on_kf_none_toggled( GtkToggleButton *widget, gpointer user_data)
|
||||
{
|
||||
info->uc.selected_parameter_id = -1;
|
||||
|
||||
disable_widget( "fxanimcontrols" );
|
||||
disable_widget( "curve" );
|
||||
if(gtk_toggle_button_get_active( widget ))
|
||||
{
|
||||
info->uc.selected_parameter_id = -1;
|
||||
|
||||
if(info->status_lock)
|
||||
return;
|
||||
disable_widget( "fxanimcontrols" );
|
||||
disable_widget( "curve" );
|
||||
|
||||
vj_kf_reset();
|
||||
if(info->status_lock)
|
||||
return;
|
||||
|
||||
vj_kf_reset();
|
||||
}
|
||||
}
|
||||
|
||||
void on_kf_p0_toggled( GtkToggleButton *widget, gpointer user_data)
|
||||
|
||||
Reference in New Issue
Block a user