Thu, 02 Mar 2006 02:12:43 +0000
[gaim-migrate @ 15745]
If you receive a file transfer and pick a filename that already exists and then cancel the overwrite confirmation, the busy cursor stays. This fixes that.
| src/gtkrequest.c | file | annotate | diff | comparison | revisions |
--- a/src/gtkrequest.c Wed Mar 01 13:23:35 2006 +0000 +++ b/src/gtkrequest.c Thu Mar 02 02:12:43 2006 +0000 @@ -1395,6 +1395,8 @@ if (data->cbs[1] != NULL) ((GaimRequestFileCb)data->cbs[1])(data->user_data, data->u.file.name); gaim_request_close(data->type, data); + } else { + gdk_window_set_cursor(GTK_WIDGET(data->dialog)->window, NULL); } }