/* enable button */
toolitem = gtk_tool_button_new_from_stock (STOCK_ENABLE);
- gtk_tool_item_set_is_important (toolitem, TRUE);
g_signal_connect (toolitem, "clicked",
G_CALLBACK (midori_addons_button_status_clicked_cb), addons);
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolitem, -1);
/* disable button */
toolitem = gtk_tool_button_new_from_stock (STOCK_DISABLE);
- gtk_tool_item_set_is_important (toolitem, TRUE);
g_signal_connect (toolitem, "clicked",
G_CALLBACK (midori_addons_button_status_clicked_cb), addons);
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolitem, -1);
#define STOCK_BOOKMARK "stock_bookmark"
#define STOCK_BOOKMARKS "vcard"
#define STOCK_CONSOLE "terminal"
-#define STOCK_DISABLE "list-remove"
-#define STOCK_ENABLE "list-add"
+#define STOCK_DISABLE GTK_STOCK_NO
+#define STOCK_ENABLE GTK_STOCK_YES
#define STOCK_EXTENSION "extension"
#define STOCK_EXTENSIONS "extension"
#define STOCK_HISTORY "document-open-recent"