Skip to content

Commit dd4c0f7

Browse files
committed
CAJA_TYPE_NAVIGATION_ACTION: avoid deprecated property "stock_id"
1 parent bbc0211 commit dd4c0f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/caja-navigation-window-menus.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ caja_navigation_window_initialize_actions (CajaNavigationWindow *window)
954954
action = g_object_new (CAJA_TYPE_NAVIGATION_ACTION,
955955
"name", "Back",
956956
"label", _("_Back"),
957-
"stock_id", "gtk-go-back",
957+
"icon-name", "go-previous",
958958
"tooltip", _("Go to the previous visited location"),
959959
"arrow-tooltip", _("Back history"),
960960
"window", window,
@@ -971,7 +971,7 @@ caja_navigation_window_initialize_actions (CajaNavigationWindow *window)
971971
action = g_object_new (CAJA_TYPE_NAVIGATION_ACTION,
972972
"name", "Forward",
973973
"label", _("_Forward"),
974-
"stock_id", "gtk-go-forward",
974+
"icon-name", "go-next",
975975
"tooltip", _("Go to the next visited location"),
976976
"arrow-tooltip", _("Forward history"),
977977
"window", window,

0 commit comments

Comments
 (0)