@eht16 commented on this pull request.
> +
+ image = gtk_image_new_from_stock(GTK_STOCK_OPEN,
GTK_ICON_SIZE_BUTTON);
+ gtk_container_add(GTK_CONTAINER(button), image);
+
+ hbox = gtk_hbox_new(FALSE, 6);
+ gtk_box_pack_start(GTK_BOX(hbox), entry_dir, TRUE, TRUE, 0);
+ gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
+ gtk_box_pack_start(GTK_BOX(inner_vbox), hbox, FALSE, FALSE, 0);
+
+ help_label = gtk_label_new(
+ _("<i>If you set the Instant Save directory to a
directory "
+ "which is not automatically cleared,\nyou will need
to cleanup instantly saved files "
+ "manually. The Instant Save plugin will not delete
the created files.</i>"));
+ gtk_label_set_use_markup(GTK_LABEL(help_label), TRUE);
+ gtk_misc_set_alignment(GTK_MISC(help_label), 0, 0.5);
+ gtk_widget_set_margin_bottom(GTK_LABEL(help_label), 8);
The cast to `GTK_LABEL` is wrong, just remove it.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3911#pullrequestreview-2442604155
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3911/review/[email protected]>