comparison src/rcfile.c @ 4:e149abcda4eb

Syncing to 0.8.1
author gqview
date Sat, 15 Apr 2000 23:15:02 +0000
parents c0e337a01cb7
children d907d608745f
comparison
equal deleted inserted replaced
3:c0e337a01cb7 4:e149abcda4eb
172 write_bool_option(f, "confirm_delete", confirm_delete); 172 write_bool_option(f, "confirm_delete", confirm_delete);
173 fprintf(f,"\n"); 173 fprintf(f,"\n");
174 write_bool_option(f, "tools_float", tools_float); 174 write_bool_option(f, "tools_float", tools_float);
175 write_bool_option(f, "tools_hidden", tools_hidden); 175 write_bool_option(f, "tools_hidden", tools_hidden);
176 write_bool_option(f, "restore_tool_state", restore_tool); 176 write_bool_option(f, "restore_tool_state", restore_tool);
177
178 write_bool_option(f, "mouse_wheel_scrolls", mousewheel_scrolls);
177 179
178 fprintf(f,"\n##### Slideshow Options #####\n\n"); 180 fprintf(f,"\n##### Slideshow Options #####\n\n");
179 181
180 write_int_option(f, "slideshow_delay", slideshow_delay); 182 write_int_option(f, "slideshow_delay", slideshow_delay);
181 183
320 "tools_float", value, tools_float); 322 "tools_float", value, tools_float);
321 tools_hidden = read_bool_option(f, option, 323 tools_hidden = read_bool_option(f, option,
322 "tools_hidden", value, tools_hidden); 324 "tools_hidden", value, tools_hidden);
323 restore_tool = read_bool_option(f, option, 325 restore_tool = read_bool_option(f, option,
324 "restore_tool_state", value, restore_tool); 326 "restore_tool_state", value, restore_tool);
327
328 mousewheel_scrolls = read_bool_option(f, option,
329 "mouse_wheel_scrolls", value, mousewheel_scrolls);
330
325 331
326 /* slideshow opitons */ 332 /* slideshow opitons */
327 333
328 slideshow_delay = read_int_option(f, option, 334 slideshow_delay = read_int_option(f, option,
329 "slideshow_delay", value, slideshow_delay); 335 "slideshow_delay", value, slideshow_delay);