@LiquidCake commented on this pull request.


In plugins/saveactions.c:

> +				GtkWidget *page_label = NULL;
+
+		get_current_tab_label(&page_label);
+
+		old_file_path = gtk_widget_get_tooltip_text(page_label);
+		new_file_path = DOC_FILENAME(doc);
+
+		if (old_file_path == NULL)
+		{
+			ui_set_statusbar(TRUE, _("plugin error: failed to delete initial temp file "
+				"('failed to get notebook tab label text')"));
+
+			return;
+		}
+
+		old_file_name = g_path_get_basename(old_file_path);

done


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/2134374958@github.com>