diff options
author | pontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-10 12:47:33 +0000 |
---|---|---|
committer | pontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-10 12:47:33 +0000 |
commit | cc6c1614f40f5baf147a44d6e1af9162c44b1fd5 (patch) | |
tree | 2b8f857ce09449ff408ef17673ee5da05c435b38 /Gui | |
parent | 5f989df629703755ce03f1a529a9dbda84949534 (diff) |
last flip bug fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7706 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r-- | Gui/mplayer/gtk/opts.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Gui/mplayer/gtk/opts.c b/Gui/mplayer/gtk/opts.c index 42ad138cd8..70205dc8d1 100644 --- a/Gui/mplayer/gtk/opts.c +++ b/Gui/mplayer/gtk/opts.c @@ -431,7 +431,8 @@ void prButton( GtkButton * button,gpointer user_data ) if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBFramedrop ) ) == TRUE ) frame_dropping=1; if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBHFramedrop ) ) == TRUE ) frame_dropping=2; - flip=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBFlip ) ); + flip=-1; + if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBFlip ) ) ) flip=1; // -- 3. page gtkSet( gtkSetSubAuto,!gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBNoAutoSub ) ),NULL ); |