summaryrefslogtreecommitdiff
path: root/extra/nautilus
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-05-04 12:59:20 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-05-04 12:59:20 +0000
commitab1410d33401cf1fc4a384bb0b2d9901c8fe8d14 (patch)
tree51133f097c3d4ff5f1d830bdbc131118e3cfd0ac /extra/nautilus
parent9780d07c31b22125ad7ecba4e281ff41194f95be (diff)
Wed May 4 12:59:20 UTC 2011
Diffstat (limited to 'extra/nautilus')
-rw-r--r--extra/nautilus/places-sidebar.patch36
-rw-r--r--extra/nautilus/progress-ui-handler.patch28
2 files changed, 0 insertions, 64 deletions
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 <cosimoc@gnome.org>
-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 <cosimoc@gnome.org>
-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