1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

Scroll to bottom of buffer when using smart jump (alt-a)

This commit is contained in:
Sebastien Helleu
2008-06-20 16:32:41 +02:00
parent 72286fe8bb
commit 2c04e97523
+2
View File
@@ -1192,6 +1192,7 @@ gui_input_jump_smart ()
gui_hotlist_initial_buffer = gui_current_window->buffer;
gui_window_switch_to_buffer (gui_current_window,
gui_hotlist->buffer);
gui_window_scroll_bottom (gui_current_window);
gui_window_redraw_buffer (gui_current_window->buffer);
}
else
@@ -1200,6 +1201,7 @@ gui_input_jump_smart ()
{
gui_window_switch_to_buffer (gui_current_window,
gui_hotlist_initial_buffer);
gui_window_scroll_bottom (gui_current_window);
gui_window_redraw_buffer (gui_current_window->buffer);
gui_hotlist_initial_buffer = NULL;
}