[Xfce4-commits] <midori:master> Bookmark panel buttons sensitive with selection
Christian Dywan
noreply at xfce.org
Sun Apr 17 22:56:01 CEST 2011
Updating branch refs/heads/master
to 7c08b7cce58a52f6a133d6a197638d41045829fa (commit)
from 7691130cc31af9e010b1e014db4610c50c29b1f4 (commit)
commit 7c08b7cce58a52f6a133d6a197638d41045829fa
Author: Tomasz Szatkowski <szatkus at gmail.com>
Date: Sun Apr 17 22:53:03 2011 +0200
Bookmark panel buttons sensitive with selection
Related to: https://bugs.launchpad.net/midori/+bug/711482
panels/midori-bookmarks.c | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/panels/midori-bookmarks.c b/panels/midori-bookmarks.c
index 065ee08..40e13fc 100644
--- a/panels/midori-bookmarks.c
+++ b/panels/midori-bookmarks.c
@@ -895,8 +895,8 @@ midori_bookmarks_row_collapsed_cb (GtkTreeView *treeview,
}
static void
-midori_bookmarks_cursor_changed_cb (GtkTreeView *treeview,
- MidoriBookmarks *bookmarks)
+midori_bookmarks_selection_changed_cb (GtkTreeSelection *treeview,
+ MidoriBookmarks *bookmarks)
{
midori_bookmarks_toolbar_update (bookmarks);
}
@@ -949,6 +949,7 @@ midori_bookmarks_init (MidoriBookmarks* bookmarks)
GtkTreeViewColumn* column;
GtkCellRenderer* renderer_pixbuf;
GtkCellRenderer* renderer_text;
+ GtkTreeSelection* selection;
/* Create the filter entry */
entry = gtk_icon_entry_new ();
@@ -1002,9 +1003,11 @@ midori_bookmarks_init (MidoriBookmarks* bookmarks)
midori_bookmarks_row_expanded_cb, bookmarks,
"signal::row-collapsed",
midori_bookmarks_row_collapsed_cb, bookmarks,
- "signal::cursor_changed",
- midori_bookmarks_cursor_changed_cb, bookmarks,
NULL);
+ selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview));
+ g_signal_connect_after (selection, "changed",
+ G_CALLBACK (midori_bookmarks_selection_changed_cb),
+ bookmarks);
gtk_widget_show (treeview);
gtk_box_pack_start (GTK_BOX (bookmarks), treeview, TRUE, TRUE, 0);
bookmarks->treeview = treeview;
More information about the Xfce4-commits
mailing list