mirror of
https://github.com/mpv-player/mpv
synced 2025-02-16 20:27:23 +00:00
fix idx
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9260 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9237ea9dee
commit
084dae624a
@ -316,7 +316,7 @@ void ShowPreferences( void )
|
||||
|
||||
// -- 5. page
|
||||
gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBNonInterlaved ),force_ni );
|
||||
gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBIndex ),index_mode );
|
||||
if ( index_mode == 1 ) gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBIndex ),1 );
|
||||
{
|
||||
int i;
|
||||
GList * Items = NULL;
|
||||
@ -570,7 +570,8 @@ void prButton( GtkButton * button,gpointer user_data )
|
||||
|
||||
// -- 5. page
|
||||
force_ni=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBNonInterlaved ) );
|
||||
index_mode=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBIndex ) );
|
||||
index_mode=-1;
|
||||
if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBIndex ) ) ) index_mode=1;
|
||||
|
||||
{
|
||||
int i;
|
||||
|
Loading…
Reference in New Issue
Block a user