1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 03:45:42 +02:00

fset: remove scroll to top of fset buffer when options are added or removed (closes #1892)

This commit is contained in:
Sébastien Helleu
2023-03-16 20:41:05 +01:00
parent b21bc63313
commit 5441c52d64
4 changed files with 119 additions and 25 deletions
+1
View File
@@ -37,6 +37,7 @@ Bug fixes::
* core: ignore incomplete ctrl/meta/meta2 codes in keys
* core: fix display glitch in command errors when a wide char is set in option weechat.look.command_chars (issue #1871)
* api: readjust string size in function string_dyn_free when string is not freed
* fset: remove scroll to top of fset buffer when options are added or removed (issue #1892)
* irc: fix join of channels in "autojoin" server option on first connection to server if auto reconnection is performed (issue #1873)
* typing: fix crash when pointer buffer is not received in callback for signal "input_text_changed" (issue #1869)
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -28,7 +28,7 @@ extern struct t_gui_buffer *fset_buffer;
extern int fset_buffer_selected_line;
extern void fset_buffer_set_title ();
extern void fset_buffer_display_option (struct t_fset_option *fset_option);
extern int fset_buffer_display_option (struct t_fset_option *fset_option);
extern void fset_buffer_refresh (int clear);
extern void fset_buffer_set_current_line (int line);
extern void fset_buffer_check_line_outside_window ();
File diff suppressed because it is too large Load Diff