Revert 040_filechooser_single-click.patch, in fact it doesn't fix

anything :/
This commit is contained in:
Josselin Mouette
2007-10-31 22:05:02 +00:00
parent 2786270b4d
commit 3263915357
2 changed files with 3 additions and 15 deletions

7
debian/changelog vendored
View File

@ -4,16 +4,13 @@ gtk+2.0 (2.12.1-2) UNRELEASED; urgency=low
* Remove the --enable-explicit-deps flag. Closes: #343711, thanks Tom * Remove the --enable-explicit-deps flag. Closes: #343711, thanks Tom
Parker. If some other packages still rely on having explicit X11 Parker. If some other packages still rely on having explicit X11
dependencies, they are buggy and need to be fixed anyway. dependencies, they are buggy and need to be fixed anyway.
* Keep --enable-explicit-deps in the directfb build; otherwise this * Keep --enable-explicit-deps in the directfb build; otherwise this
breaks any binary linking against it because the rpath isn't passed. breaks any binary linking against it because the rpath isn't passed.
* 033_treeview_resizing.patch: updated patch from Kristian Rietveld. * 033_treeview_resizing.patch: updated patch from Kristian Rietveld.
* 031_gtksearchenginetracker_fixes.patch: added back, only the name * 031_gtksearchenginetracker_fixes.patch: added back, only the name
change was fixed upstream. change was fixed upstream.
* 040_filechooser_single-click.patch: allow a situation where no
shortcut is selected, to avoid issues for keyboard users.
Closes: #448674.
-- Josselin Mouette <joss@debian.org> Wed, 31 Oct 2007 21:56:52 +0100 -- Josselin Mouette <joss@debian.org> Wed, 31 Oct 2007 23:05:18 +0100
gtk+2.0 (2.12.1-1) unstable; urgency=low gtk+2.0 (2.12.1-1) unstable; urgency=low

View File

@ -4,7 +4,7 @@ requiring double-click.
Index: gtk+-2.12.1/gtk/gtkfilechooserdefault.c Index: gtk+-2.12.1/gtk/gtkfilechooserdefault.c
=================================================================== ===================================================================
--- gtk+-2.12.1.orig/gtk/gtkfilechooserdefault.c 2007-10-31 19:42:02.854882096 +0100 --- gtk+-2.12.1.orig/gtk/gtkfilechooserdefault.c 2007-10-31 19:42:02.854882096 +0100
+++ gtk+-2.12.1/gtk/gtkfilechooserdefault.c 2007-10-31 20:16:17.995997914 +0100 +++ gtk+-2.12.1/gtk/gtkfilechooserdefault.c 2007-10-31 23:05:03.757032150 +0100
@@ -390,10 +390,6 @@ @@ -390,10 +390,6 @@
static void filter_combo_changed (GtkComboBox *combo_box, static void filter_combo_changed (GtkComboBox *combo_box,
@ -39,15 +39,6 @@ Index: gtk+-2.12.1/gtk/gtkfilechooserdefault.c
} }
static gboolean static gboolean
@@ -3930,7 +3940,7 @@
GDK_ACTION_COPY | GDK_ACTION_MOVE);
selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view));
- gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE);
+ gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
gtk_tree_selection_set_select_function (selection,
shortcuts_select_func,
impl, NULL);
@@ -3938,9 +3948,6 @@ @@ -3938,9 +3948,6 @@
g_signal_connect (selection, "changed", g_signal_connect (selection, "changed",
G_CALLBACK (shortcuts_selection_changed_cb), impl); G_CALLBACK (shortcuts_selection_changed_cb), impl);