@LiquidCake commented on this pull request.
> +{
+ gint i, max =
gtk_notebook_get_n_pages(GTK_NOTEBOOK(geany->main_widgets->notebook));
+
+ for (i = 0; i < max; i++)
+ {
+ GeanyDocument *doc = document_get_from_page(i);
+
+ if (doc->real_path != NULL &&
is_temp_saved_file(doc->file_name))
+ {
+ document_save_file(doc, FALSE);
+ }
+ }
+
+ return TRUE;
+}
+
fixed
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3911#discussion_r1700958964
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3911/review/[email protected]>