From ab1410d33401cf1fc4a384bb0b2d9901c8fe8d14 Mon Sep 17 00:00:00 2001 From: Parabola Date: Wed, 4 May 2011 12:59:20 +0000 Subject: Wed May 4 12:59:20 UTC 2011 --- extra/nautilus/places-sidebar.patch | 36 -------------------------------- extra/nautilus/progress-ui-handler.patch | 28 ------------------------- 2 files changed, 64 deletions(-) delete mode 100644 extra/nautilus/places-sidebar.patch delete mode 100644 extra/nautilus/progress-ui-handler.patch (limited to 'extra/nautilus') diff --git a/extra/nautilus/places-sidebar.patch b/extra/nautilus/places-sidebar.patch deleted file mode 100644 index e6c3f6327..000000000 --- a/extra/nautilus/places-sidebar.patch +++ /dev/null @@ -1,36 +0,0 @@ -From cd5a1e5cf95a165c66e7a097530058864dc3a38f Mon Sep 17 00:00:00 2001 -From: Cosimo Cecchi -Date: Thu, 28 Apr 2011 18:05:07 +0000 -Subject: places-sidebar: make sure to return if we click inside empty space - -https://bugzilla.gnome.org/show_bug.cgi?id=648872 ---- -diff --git a/src/nautilus-places-sidebar.c b/src/nautilus-places-sidebar.c -index 6e49a4c..56216ab 100644 ---- a/src/nautilus-places-sidebar.c -+++ b/src/nautilus-places-sidebar.c -@@ -2685,6 +2685,7 @@ bookmarks_button_release_event_cb (GtkWidget *widget, - GtkTreeIter iter; - GtkTreeModel *model; - GtkTreeView *tree_view; -+ gboolean res; - - path = NULL; - -@@ -2708,8 +2709,12 @@ bookmarks_button_release_event_cb (GtkWidget *widget, - return FALSE; - } - -- gtk_tree_view_get_path_at_pos (tree_view, (int) event->x, (int) event->y, -- &path, NULL, NULL, NULL); -+ res = gtk_tree_view_get_path_at_pos (tree_view, (int) event->x, (int) event->y, -+ &path, NULL, NULL, NULL); -+ -+ if (!res) { -+ return FALSE; -+ } - - gtk_tree_model_get_iter (model, &iter, path); - --- -cgit v0.9 diff --git a/extra/nautilus/progress-ui-handler.patch b/extra/nautilus/progress-ui-handler.patch deleted file mode 100644 index 231ea64bc..000000000 --- a/extra/nautilus/progress-ui-handler.patch +++ /dev/null @@ -1,28 +0,0 @@ -From fdcc2f36f549a18ea6f587fb9e9bad97f0114c59 Mon Sep 17 00:00:00 2001 -From: Cosimo Cecchi -Date: Thu, 28 Apr 2011 18:25:15 +0000 -Subject: progress-ui-handler: don't add progress infos to the window twice - -We were adding them twice in case there was already one operation -running. - -https://bugzilla.gnome.org/show_bug.cgi?id=648857 ---- -diff --git a/src/nautilus-progress-ui-handler.c b/src/nautilus-progress-ui-handler.c -index 2479682..fe295b2 100644 ---- a/src/nautilus-progress-ui-handler.c -+++ b/src/nautilus-progress-ui-handler.c -@@ -315,10 +315,10 @@ handle_new_progress_info (NautilusProgressUIHandler *self, - G_CALLBACK (progress_info_finished_cb), self); - - self->priv->active_infos++; -- progress_ui_handler_add_to_window (self, info); - - if (self->priv->active_infos == 1) { - /* this is the only active operation, present the window */ -+ progress_ui_handler_add_to_window (self, info); - gtk_window_present (GTK_WINDOW (self->priv->progress_window)); - } else { - if (gtk_widget_get_visible (self->priv->progress_window)) { --- -cgit v0.9 -- cgit v1.2.3-54-g00ecf