diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-12-16 10:51:06 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-12-16 10:51:06 +0100 |
commit | 0bdef1013a27ad776523d2737b257b68d2de54f5 (patch) | |
tree | 60dcac56d20ce5012a331d9a70a8fdc386f4f34e /src | |
parent | e69a3f0f0ef86d4f9c75237b48f7c7fccbe5e4c0 (diff) | |
download | weechat-0bdef1013a27ad776523d2737b257b68d2de54f5.zip |
Set default filling "columns_vertical" for nicklist bar
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/gui-bar.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c index 98720ba9a..2bb6f6877 100644 --- a/src/gui/gui-bar.c +++ b/src/gui/gui-bar.c @@ -2034,19 +2034,19 @@ gui_bar_create_default_nicklist () { /* create nicklist bar */ if (gui_bar_new (GUI_BAR_DEFAULT_NAME_NICKLIST, - "0", /* hidden */ - "200", /* priority */ - "window", /* type */ - "nicklist", /* conditions */ - "right", /* position */ - "horizontal", /* filling_top_bottom */ - "vertical", /* filling_left_right */ - "0", /* size */ - "0", /* size_max */ - "default", /* color fg */ - "cyan", /* color delim */ - "default", /* color bg */ - "1", /* separators */ + "0", /* hidden */ + "200", /* priority */ + "window", /* type */ + "nicklist", /* conditions */ + "right", /* position */ + "columns_vertical", /* filling_top_bottom */ + "vertical", /* filling_left_right */ + "0", /* size */ + "0", /* size_max */ + "default", /* color fg */ + "cyan", /* color delim */ + "default", /* color bg */ + "1", /* separators */ gui_bar_item_names[GUI_BAR_ITEM_BUFFER_NICKLIST])) /* items */ { gui_chat_printf (NULL, _("Bar \"%s\" created"), |