@techee commented on this pull request.


In plugins/saveactions.c:

> +		gtk_box_pack_start(GTK_BOX(notebook_vbox), inner_vbox, TRUE, TRUE, 5);
+		gtk_notebook_insert_page(GTK_NOTEBOOK(notebook),
+			notebook_vbox, gtk_label_new(_("Untitled Document Save")), NOTEBOOK_PAGE_UNTITLEDDOC);
+
+		disabled_radio = gtk_radio_button_new_with_mnemonic(NULL, _("Disabled"));
+		pref_widgets.untitled_doc_disabled_radio = disabled_radio;
+		gtk_label_set_mnemonic_widget(GTK_LABEL(label), disabled_radio);
+		gtk_button_set_focus_on_click(GTK_BUTTON(disabled_radio), FALSE);
+		gtk_container_add(GTK_CONTAINER(inner_vbox), disabled_radio);
+		g_signal_connect(disabled_radio, "toggled",
+			G_CALLBACK(radio_toggled_cb), GINT_TO_POINTER(NOTEBOOK_UNTITLEDDOC_RADIO_DISABLED));
+
+		/* Instantsave */
+
+		instantsave_radio = gtk_radio_button_new_with_mnemonic_from_widget(
+			GTK_RADIO_BUTTON(disabled_radio), _("Instant Save"));

What about "Instant Save After Creation" here so it's clear when this happens (and that saving happens just once compared to persistent documents)?


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/pull/3911/review/2454912270@github.com>