X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=blobdiff_plain;f=src%2Fpreferences.c;h=1651e7f6417c44f4bbe6201bfb0ded1dcb564c62;hp=027abe0583a19b88f1d1b9dd9085d09855fd5315;hb=e436ea53511e1dadab981af18b237fee83fde39b;hpb=2dfa5f58107ba16e171e2e65524859a42b057742 diff --git a/src/preferences.c b/src/preferences.c index 027abe05..1651e7f6 100644 --- a/src/preferences.c +++ b/src/preferences.c @@ -574,7 +574,7 @@ static void add_stereo_mode_menu(GtkWidget *table, gint column, gint row, const gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo), _("Side by Side")); gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo), _("Side by Side Half size")); - if (option & PR_STEREO_HORIZ) + if (option & PR_STEREO_HORIZ) { current = 4; if (option & PR_STEREO_HALF) current = 5; @@ -582,7 +582,7 @@ static void add_stereo_mode_menu(GtkWidget *table, gint column, gint row, const gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo), _("Top - Bottom")); gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo), _("Top - Bottom Half size")); - if (option & PR_STEREO_VERT) + if (option & PR_STEREO_VERT) { current = 6; if (option & PR_STEREO_HALF) current = 7;