> @@ -1108,6 +1108,9 @@ on_prefs_dialog_response(GtkDialog *dialog, gint > response, gpointer user_data) > > widget = ui_lookup_widget(ui_widgets.prefs_dialog, > "check_symbol_auto_completion"); > editor_prefs.auto_complete_symbols = > gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); > + > + widget = ui_lookup_widget(ui_widgets.prefs_dialog, > "check_always_auto_close_brackets"); > + editor_prefs.always_auto_close_brackets = > gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
the setting is never loaded. Also, new settings should use Stash API, and here probably be in *keyfile.c:init_pref_groups()*. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1060/files/67d9932e2620c252bb9e94d81dcc4991608b4fb0#r66485755
