Skip to content

Commit

Permalink
Fix typo in config key name "open_new_files" (#473)
Browse files Browse the repository at this point in the history
Closes #469.
  • Loading branch information
eht16 authored and frlan committed Aug 9, 2016
1 parent 0bdd6ae commit 1e538c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion treebrowser/src/treebrowser.c
Original file line number Diff line number Diff line change
Expand Up @@ -1887,7 +1887,7 @@ save_settings(void)
g_key_file_set_boolean(config, "treebrowser", "show_tree_lines", CONFIG_SHOW_TREE_LINES);
g_key_file_set_boolean(config, "treebrowser", "show_bookmarks", CONFIG_SHOW_BOOKMARKS);
g_key_file_set_integer(config, "treebrowser", "show_icons", CONFIG_SHOW_ICONS);
g_key_file_set_boolean(config, "treebrowser", "open_new_file", CONFIG_OPEN_NEW_FILES);
g_key_file_set_boolean(config, "treebrowser", "open_new_files", CONFIG_OPEN_NEW_FILES);

data = g_key_file_to_data(config, NULL, NULL);
utils_write_file(CONFIG_FILE, data);
Expand Down

0 comments on commit 1e538c0

Please sign in to comment.