comparison src/options.c @ 2832:ac46f4e545a4

Fix #160: Replace print dialog by standard GTK dialog https://github.com/BestImageViewer/geeqie/issues/160 Option to place text as header or footer Option to show additional text field on each page of a single or multi-page print job
author Colin Clark <colin.clark@cclark.uk>
date Sun, 23 Sep 2018 20:09:30 +0100
parents 5d88a8dfa364
children 1656d2341e2f
comparison
equal deleted inserted replaced
2831:29231f01f36c 2832:ac46f4e545a4
193 193
194 options->read_metadata_in_idle = FALSE; 194 options->read_metadata_in_idle = FALSE;
195 options->star_rating.star = STAR_RATING_STAR; 195 options->star_rating.star = STAR_RATING_STAR;
196 options->star_rating.rejected = STAR_RATING_REJECTED; 196 options->star_rating.rejected = STAR_RATING_REJECTED;
197 197
198 options->printer.font = g_strdup("Serif 10"); 198 options->printer.image_font = g_strdup("Serif 10");
199 options->printer.page_font = g_strdup("Serif 10");
200 options->printer.page_text = NULL;
199 options->printer.text_fields = 1; 201 options->printer.text_fields = 1;
202 options->printer.image_text_position = 1;
203 options->printer.page_text_position = 3;
200 204
201 return options; 205 return options;
202 } 206 }
203 207
204 void setup_default_options(ConfOptions *options) 208 void setup_default_options(ConfOptions *options)