fixed commandline option in reloaded for starting with preview enabled

This commit is contained in:
niels
2011-03-30 22:38:43 +02:00
parent af8b6c5601
commit 7b6711d0ce

View File

@@ -7160,7 +7160,6 @@ int vj_gui_reconnect(char *hostname,char *group_name, int port_num)
info->uc.reload_hint[HINT_SEQ_ACT] = 1; info->uc.reload_hint[HINT_SEQ_ACT] = 1;
info->uc.reload_hint[HINT_HISTORY] = 1; info->uc.reload_hint[HINT_HISTORY] = 1;
return 1; return 1;
} }
@@ -7283,10 +7282,9 @@ gboolean is_alive( int *do_sync )
multrack_audoadd( info->mt, remote, port ); multrack_audoadd( info->mt, remote, port );
*do_sync = 1; *do_sync = 1;
if( user_preview ) { if( user_preview ) {
info->preview_locked = 1; // info->preview_locked = 1;
multitrack_set_quality( info->mt, user_preview );
set_toggle_button( "previewtoggle", 1 ); set_toggle_button( "previewtoggle", 1 );
info->preview_locked = 0; // info->preview_locked = 0;
} }
veejay_stop_connecting(gui); veejay_stop_connecting(gui);
} }