From 15fb70844def40e036b3eeb36907039cbb8aff01 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Mon, 2 Jan 2012 12:03:45 +0000 Subject: When dragging text selections to WB, pass the selection pointer to the save routine. svn path=/trunk/netsurf/; revision=13363 --- amiga/drag.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga') diff --git a/amiga/drag.c b/amiga/drag.c index 2c065ef37..9bc8262c6 100644 --- a/amiga/drag.c +++ b/amiga/drag.c @@ -158,8 +158,8 @@ void ami_drag_save(struct Window *win) break; case GUI_SAVE_TEXT_SELECTION: // selection - AddPart(path,"netsurf_text_file",1024); - ami_file_save(AMINS_SAVE_SELECTION, path, win, NULL, NULL, NULL); + AddPart(path,"netsurf_text_selection",1024); + ami_file_save(AMINS_SAVE_SELECTION, path, win, NULL, NULL, drag_save_data); break; case GUI_SAVE_COMPLETE: -- cgit v1.2.3