@b4n commented on this pull request.


In workbench/src/dialogs.c:

> + **/
+gboolean dialogs_directory_settings(WB_PROJECT_DIR *directory)
+{
+	GtkWidget *w_file_patterns, *w_ignored_dirs_patterns, *w_ignored_file_patterns;
+	GtkWidget *dialog, *label, *content_area;
+	GtkWidget *vbox, *hbox, *hbox1, *table;
+	GtkDialogFlags flags;
+	gchar *file_patterns_old, *ignored_file_patterns_old, *ignored_dirs_patterns_old;
+	gboolean changed;
+
+	/* Create the widgets */
+	flags = GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT;
+	dialog = gtk_dialog_new_with_buttons (_("Directory settings"),
+										  GTK_WINDOW(wb_globals.geany_plugin->geany_data->main_widgets->window),
+										  flags,
+										  GTK_STOCK_CANCEL,

For now we continue using them (they also do provide icons for most things), but I guess we'll eventually stop when starting to support GTK4. So for now the direction is conservative, not removing it before needed.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.