diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-10-06 18:08:52 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-10-06 18:08:52 +0200 |
commit | e47002884a78ed8b8ed495421469c23c5963d98f (patch) | |
tree | 5e7730911643108a374f35bdc16fc70b168565b9 /src | |
parent | c77bccba870c0f85bb5168a3fb0a81103d98bf8a (diff) | |
download | weechat-e47002884a78ed8b8ed495421469c23c5963d98f.zip |
core: count suffix in alignment computed for context info
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/gui-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-window.c b/src/gui/gui-window.c index e18f74b13..2a494f2c9 100644 --- a/src/gui/gui-window.c +++ b/src/gui/gui-window.c @@ -183,7 +183,7 @@ gui_window_get_context_at_xy (struct t_gui_window *window, if (!window->coords[win_y].data) return; - coords_x_message = gui_line_get_align ((*line)->data->buffer, *line, 0, + coords_x_message = gui_line_get_align ((*line)->data->buffer, *line, 1, ((win_y > 0) && (window->coords[win_y - 1].line != *line))); |