diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-30 10:46:42 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-30 10:46:42 +0200 |
commit | e1a54d49eb244a81858418949320cb23989c5598 (patch) | |
tree | 8a528c0570e96efce6675fe3da0adec18a5fee1e /src/gui/curses/gui-curses-chat.c | |
parent | 80e740b72ffda6e404b3e03bab8ea5b60c0e283c (diff) | |
download | weechat-e1a54d49eb244a81858418949320cb23989c5598.zip |
core: add default key alt+"x" (zoom on merged buffer) (task #11029)
Diffstat (limited to 'src/gui/curses/gui-curses-chat.c')
-rw-r--r-- | src/gui/curses/gui-curses-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/curses/gui-curses-chat.c b/src/gui/curses/gui-curses-chat.c index fccefff0a..ddcaa7b65 100644 --- a/src/gui/curses/gui-curses-chat.c +++ b/src/gui/curses/gui-curses-chat.c @@ -646,7 +646,7 @@ gui_chat_display_time_to_prefix (struct t_gui_window *window, /* display buffer name (if many buffers are merged) */ mixed_lines = line->data->buffer->mixed_lines; - if (mixed_lines) + if (mixed_lines && (line->data->buffer->active != 2)) { if ((CONFIG_INTEGER(config_look_prefix_buffer_align_max) > 0) && (CONFIG_INTEGER(config_look_prefix_buffer_align) != CONFIG_LOOK_PREFIX_BUFFER_ALIGN_NONE)) |