[gtk+/wip/csoriano/bookmarks: 37/41] gtkplacessidebar: add new bookmark icon
- From: Carlos Soriano Sánchez <csoriano src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/csoriano/bookmarks: 37/41] gtkplacessidebar: add new bookmark icon
- Date: Wed, 6 May 2015 21:09:29 +0000 (UTC)
commit 4286f2d373c8b3d7489119535e669bd0e8d8dd68
Author: Carlos Soriano <csoriano gnome org>
Date: Sat Apr 11 17:46:59 2015 +0200
gtkplacessidebar: add new bookmark icon
Following design mockups
https://bugzilla.gnome.org/show_bug.cgi?id=747793
gtk/gtkplacessidebar.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c
index 75be75d..74f8269 100644
--- a/gtk/gtkplacessidebar.c
+++ b/gtk/gtkplacessidebar.c
@@ -1677,19 +1677,23 @@ show_new_bookmark_row (GtkPlacesSidebar *sidebar,
int bookmarks_index;
gint drop_target_index;
GtkTreePath *new_bookmark_path;
+ GIcon *new_bookmark_icon;
bookmarks_index = bookmarks_get_first_index (sidebar);
/* Add the row if it doesn't exists yet */
if (sidebar->drop_state == DROP_STATE_NORMAL)
{
+ new_bookmark_icon = g_themed_icon_new ("bookmark-new-symbolic");
gtk_list_store_insert_with_values (sidebar->store, &iter, bookmarks_index,
PLACES_SIDEBAR_COLUMN_ROW_TYPE, PLACES_DROP_FEEDBACK,
PLACES_SIDEBAR_COLUMN_SECTION_TYPE, SECTION_BOOKMARKS,
+ PLACES_SIDEBAR_COLUMN_GICON, new_bookmark_icon,
PLACES_SIDEBAR_COLUMN_NAME, _("New bookmark"),
PLACES_SIDEBAR_COLUMN_INDEX, bookmarks_index,
PLACES_SIDEBAR_COLUMN_NO_EJECT, TRUE,
-1);
+ g_object_unref (new_bookmark_icon);
}
/* If the state is permanent, don't change it. Is the application that
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]