mirror of
https://github.com/weechat/weechat.git
synced 2026-07-04 08:43:13 +02:00
Fix bug with global history, reset pointer to last entry after each user input (bug #28754)
This commit is contained in:
@@ -9,6 +9,8 @@ Version 0.3.2 (under dev!)
|
||||
* core: add signal "day_changed"
|
||||
* core: remove unneeded space after time on each line if option
|
||||
weechat.look.buffer_time_format is set to empty value (bug #28751)
|
||||
* gui: fix bug with global history, reset pointer to last entry after each user
|
||||
input (bug #28754)
|
||||
* api: add missing infos in functions buffer_get_integer / buffer_get_string
|
||||
and in buffer infolist
|
||||
* irc: fix bug with SSL connection (fails sometimes when ssl_verify is on)
|
||||
|
||||
@@ -304,6 +304,7 @@ gui_input_return (struct t_gui_window *window)
|
||||
window->buffer->input_buffer_1st_display = 0;
|
||||
gui_completion_stop (window->buffer->completion, 1);
|
||||
window->buffer->ptr_history = NULL;
|
||||
history_global_ptr = NULL;
|
||||
gui_input_optimize_size (window->buffer);
|
||||
gui_input_text_changed_modifier_and_signal (window->buffer);
|
||||
input_data (window->buffer, command);
|
||||
|
||||
Reference in New Issue
Block a user