diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-06 23:05:43 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-06 23:05:43 +0200 |
commit | 6b4416042b610282690f39fa803b3af98a6bbca5 (patch) | |
tree | 3292aa68cdd5f5e138fab6b1d39d87c014ad8d4e /src/gui | |
parent | 37d70899d31d50cf817606ff764cfca7ca202919 (diff) | |
download | weechat-6b4416042b610282690f39fa803b3af98a6bbca5.zip |
core: add "layout_number_merge_order" in buffer properties that can be read
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui-buffer.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index e2272474d..bb21dc877 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -75,13 +75,13 @@ char *gui_buffer_notify_string[GUI_BUFFER_NUM_NOTIFY] = { "none", "highlight", "message", "all" }; char *gui_buffer_properties_get_integer[] = -{ "number", "layout_number", "type", "notify", "num_displayed", "active", - "print_hooks_enabled", "lines_hidden", "prefix_max_length", - "time_for_each_line", "nicklist", "nicklist_case_sensitive", - "nicklist_max_length", "nicklist_display_groups", "nicklist_visible_count", - "input", "input_get_unknown_commands", "input_size", "input_length", - "input_pos", "input_1st_display", "num_history", "text_search", - "text_search_exact", "text_search_found", +{ "number", "layout_number", "layout_number_merge_order", "type", "notify", + "num_displayed", "active", "print_hooks_enabled", "lines_hidden", + "prefix_max_length", "time_for_each_line", "nicklist", + "nicklist_case_sensitive", "nicklist_max_length", "nicklist_display_groups", + "nicklist_visible_count", "input", "input_get_unknown_commands", + "input_size", "input_length", "input_pos", "input_1st_display", + "num_history", "text_search", "text_search_exact", "text_search_found", NULL }; char *gui_buffer_properties_get_string[] = |