@LiquidCake commented on this pull request.
> + 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"));
done
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3911#discussion_r1854393397
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3911/review/[email protected]>