[gnome-photos] embed: Change [Albums|Photos|Favorites] to [Recent|Albums|Favorites]



commit 510c5054dd9032646a26459250809c76f0c934ba
Author: Debarshi Ray <debarshir gnome org>
Date:   Fri Dec 27 16:13:10 2013 +0100

    embed: Change [Albums|Photos|Favorites] to [Recent|Albums|Favorites]
    
    This is as per the latest designs at
    https://wiki.gnome.org/Design/Apps/Photos

 src/photos-embed.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/photos-embed.c b/src/photos-embed.c
index 10f8d50..866684b 100644
--- a/src/photos-embed.c
+++ b/src/photos-embed.c
@@ -498,12 +498,12 @@ photos_embed_init (PhotosEmbed *self)
 
   priv->indexing_ntfctn = g_object_ref_sink (photos_indexing_notification_new ());
 
+  priv->overview = photos_view_container_new (PHOTOS_WINDOW_MODE_OVERVIEW);
+  gtk_stack_add_titled (GTK_STACK (priv->stack), priv->overview, "overview", _("Recent"));
+
   priv->collections = photos_view_container_new (PHOTOS_WINDOW_MODE_COLLECTIONS);
   gtk_stack_add_titled (GTK_STACK (priv->stack), priv->collections, "collections", _("Albums"));
 
-  priv->overview = photos_view_container_new (PHOTOS_WINDOW_MODE_OVERVIEW);
-  gtk_stack_add_titled (GTK_STACK (priv->stack), priv->overview, "overview", _("Photos"));
-
   priv->favorites = photos_view_container_new (PHOTOS_WINDOW_MODE_FAVORITES);
   gtk_stack_add_titled (GTK_STACK (priv->stack), priv->favorites, "favorites", _("Favorites"));
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]