diff options
author | 2006-04-04 13:50:50 +0000 | |
---|---|---|
committer | 2006-04-04 13:50:50 +0000 | |
commit | 13cb8c36529618daf7356bdc279b62ef66bb8826 (patch) | |
tree | 9f4d22518a7d0137025f9a1f7490817b47c10c55 /app-arch/file-roller/files | |
parent | Add kaffeine with a fix for HTTP input. (diff) | |
download | historical-13cb8c36529618daf7356bdc279b62ef66bb8826.tar.gz historical-13cb8c36529618daf7356bdc279b62ef66bb8826.tar.bz2 historical-13cb8c36529618daf7356bdc279b62ef66bb8826.zip |
fix crasher and dnd behaviour
Package-Manager: portage-2.1_pre4-r1
Diffstat (limited to 'app-arch/file-roller/files')
-rw-r--r-- | app-arch/file-roller/files/file-roller-2.14.0-double_unpack.patch | 19 | ||||
-rw-r--r-- | app-arch/file-roller/files/file-roller-2.14.0-drag_move.patch | 16 |
2 files changed, 35 insertions, 0 deletions
diff --git a/app-arch/file-roller/files/file-roller-2.14.0-double_unpack.patch b/app-arch/file-roller/files/file-roller-2.14.0-double_unpack.patch new file mode 100644 index 000000000000..855910f84095 --- /dev/null +++ b/app-arch/file-roller/files/file-roller-2.14.0-double_unpack.patch @@ -0,0 +1,19 @@ +=================================================================== +RCS file: /cvs/gnome/file-roller/src/window.c,v +retrieving revision 1.160 +retrieving revision 1.161 +diff -u -r1.160 -r1.161 +--- window.c 2006/04/03 12:44:13 1.160 ++++ window.c 2006/04/04 11:25:47 1.161 +@@ -4793,6 +4793,11 @@ + junk_paths, + password); + ++ if (window->archive->process->n_comm < 0) { /* no file to extract */ ++ fr_process_start (window->archive->process); ++ return; ++ } ++ + fr_process_set_continue_func (window->archive->process, + extract__content_is_singleton, + window); diff --git a/app-arch/file-roller/files/file-roller-2.14.0-drag_move.patch b/app-arch/file-roller/files/file-roller-2.14.0-drag_move.patch new file mode 100644 index 000000000000..c6fe592c62c3 --- /dev/null +++ b/app-arch/file-roller/files/file-roller-2.14.0-drag_move.patch @@ -0,0 +1,16 @@ +=================================================================== +RCS file: /cvs/gnome/file-roller/src/eggtreemultidnd.c,v +retrieving revision 1.4 +retrieving revision 1.5 +diff -u -r1.4 -r1.5 +--- eggtreemultidnd.c 2005/12/10 11:19:48 1.4 ++++ eggtreemultidnd.c 2006/04/04 12:35:32 1.5 +@@ -311,7 +311,7 @@ + + context = gtk_drag_begin (widget, + target_list, +- GDK_ACTION_COPY, ++ GDK_ACTION_MOVE, + priv_data->pressed_button, + (GdkEvent*)event); + set_context_data (context, path_list); |