X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=blobdiff_plain;f=src%2Frcfile.c;h=81178587998fb2cf2f319a0ad490a8e65f8c3788;hp=ec853789b9fbc057b70c74edc1dc959779e0b933;hb=12a4fe18405a9132efc3ef19570bf0c59dd6b427;hpb=0dd6923f3b5f44fdaed2a1d1060f7b8df5e7014c diff --git a/src/rcfile.c b/src/rcfile.c index ec853789..81178587 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -335,6 +335,8 @@ static void write_global_attributes(GString *outstr, gint indent) WRITE_NL(); WRITE_BOOL(*options, use_saved_window_positions_for_new_windows); WRITE_NL(); WRITE_BOOL(*options, tools_restore_state); + WRITE_NL(); WRITE_UINT(*options, log_window_lines); + /* File operations Options */ WRITE_NL(); WRITE_BOOL(*options, file_ops.enable_in_place_rename); WRITE_NL(); WRITE_BOOL(*options, file_ops.confirm_delete); @@ -629,6 +631,8 @@ static gboolean load_global_params(const gchar **attribute_names, const gchar ** if (READ_BOOL(*options, use_saved_window_positions_for_new_windows)) continue; if (READ_BOOL(*options, tools_restore_state)) continue; + if (READ_UINT(*options, log_window_lines)) continue; + /* Properties dialog options */ if (READ_CHAR(*options, properties.tabs_order)) continue;