summaryrefslogtreecommitdiff
path: root/amiga/file.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2013-01-03 19:53:20 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2013-01-03 19:53:20 +0000
commit07024b05c4be91498245a3066fc3365259acf8bd (patch)
tree0f3d72734582d9490933abbb4ee9e1cdcaf8a06c /amiga/file.c
parentdfc2fe6f970b50fc55b00b41e4c178fad2544770 (diff)
downloadnetsurf-07024b05c4be91498245a3066fc3365259acf8bd.tar.gz
netsurf-07024b05c4be91498245a3066fc3365259acf8bd.tar.bz2
Change the mouse pointer back to what it was (and what NetSurf thinks it is) instead of to the default pointer. Additionally don't use ami_update_pointer for treeview windows as AmigaOS has a pointer setting per window, but NetSurf is only storing the current one as a single global variable.
Diffstat (limited to 'amiga/file.c')
-rw-r--r--amiga/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/file.c b/amiga/file.c
index 30a63b615..161aabdf3 100644
--- a/amiga/file.c
+++ b/amiga/file.c
@@ -141,7 +141,7 @@ void ami_file_save(int type, char *fname, struct Window *win,
struct bitmap *bm;
BPTR fh=0;
- ami_update_pointer(win, GUI_POINTER_WAIT);
+ ami_update_pointer(win, GUI_POINTER_WAIT, false);
if(ami_download_check_overwrite(fname, win, 0))
{
@@ -200,7 +200,7 @@ void ami_file_save(int type, char *fname, struct Window *win,
if(object) SetComment(fname, nsurl_access(hlcache_handle_get_url(object)));
}
- ami_update_pointer(win, GUI_POINTER_DEFAULT);
+ ami_update_pointer(win, GUI_POINTER_DEFAULT, false);
}
void ami_file_save_req(int type, struct gui_window_2 *gwin,