From: Vladimir Nadvornik Date: Tue, 27 Sep 2011 20:06:09 +0000 (+0200) Subject: set stereo.fixed default values to hdmi stereo standard X-Git-Tag: 1.1~40 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=bdea8db7b066162269cc1d9d09d745983e5fadb0 set stereo.fixed default values to hdmi stereo standard --- diff --git a/src/options.c b/src/options.c index d333caf4..e35bca85 100644 --- a/src/options.c +++ b/src/options.c @@ -125,12 +125,12 @@ ConfOptions *init_options(ConfOptions *options) options->tree_descend_subdirs = FALSE; options->update_on_time_change = TRUE; - options->stereo.fixed_w = 640; - options->stereo.fixed_h = 200; + options->stereo.fixed_w = 1920; + options->stereo.fixed_h = 1080; options->stereo.fixed_x1 = 0; - options->stereo.fixed_y1 = 20; + options->stereo.fixed_y1 = 0; options->stereo.fixed_x2 = 0; - options->stereo.fixed_y2 = 260; + options->stereo.fixed_y2 = 1125; return options; }