X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=blobdiff_plain;f=src%2Frcfile.c;h=ec853789b9fbc057b70c74edc1dc959779e0b933;hp=cf2f4746f2055fa778be1741f38518722eeeb895;hb=0dd6923f3b5f44fdaed2a1d1060f7b8df5e7014c;hpb=68c4796e434bae49815d667264a780c8b63fc551 diff --git a/src/rcfile.c b/src/rcfile.c index cf2f4746..ec853789 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -463,6 +463,12 @@ static void write_global_attributes(GString *outstr, gint indent) WRITE_NL(); WRITE_INT(*options, stereo.fixed_y1); WRITE_NL(); WRITE_INT(*options, stereo.fixed_x2); WRITE_NL(); WRITE_INT(*options, stereo.fixed_y2); + + /* copy move rename */ + WRITE_NL(); WRITE_INT(*options, cp_mv_rn.auto_start); + WRITE_NL(); WRITE_INT(*options, cp_mv_rn.auto_padding); + WRITE_NL(); WRITE_CHAR(*options, cp_mv_rn.auto_end); + WRITE_NL(); WRITE_INT(*options, cp_mv_rn.formatted_start); } static void write_color_profile(GString *outstr, gint indent) @@ -747,6 +753,12 @@ static gboolean load_global_params(const gchar **attribute_names, const gchar ** if (READ_INT(*options, stereo.fixed_x2)) continue; if (READ_INT(*options, stereo.fixed_y2)) continue; + /* copy move rename */ + if (READ_INT(*options, cp_mv_rn.auto_start)) continue; + if (READ_INT(*options, cp_mv_rn.auto_padding)) continue; + if (READ_CHAR(*options, cp_mv_rn.auto_end)) continue; + if (READ_INT(*options, cp_mv_rn.formatted_start)) continue; + /* Dummy options */ if (READ_DUMMY(*options, image.dither_quality, "deprecated since 2012-08-13")) continue;