[nautilus/wip/corey/sidebar-menus: 1/3] sidebar: Fix typo in action "bookmark"




commit e195b73c06a584ab173ae73289c7bf8400e73a73
Author: Corey Berla <corey berla me>
Date:   Tue Aug 30 14:06:24 2022 -0700

    sidebar: Fix typo in action "bookmark"
    
    Menu item was set to "add-bookmark" so this was never enabled
    because the action was nonexistent.
    
    Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/2461

 src/gtk/nautilusgtkplacessidebar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/gtk/nautilusgtkplacessidebar.c b/src/gtk/nautilusgtkplacessidebar.c
index 9ba3e0c99..e896ac7b8 100644
--- a/src/gtk/nautilusgtkplacessidebar.c
+++ b/src/gtk/nautilusgtkplacessidebar.c
@@ -3329,7 +3329,7 @@ create_row_popover (NautilusGtkPlacesSidebar *sidebar,
   g_object_unref (section);
 
   section = g_menu_new ();
-  item = g_menu_item_new (_("_Add Bookmark"), "row.add-bookmark");
+  item = g_menu_item_new (_("_Add Bookmark"), "row.bookmark");
   g_menu_append_item (section, item);
   g_object_unref (item);
 


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