mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Changes to menu icons
It's customary for menu bars to not have icons. Some items were lacking icons when there's perfectly good stock icons available. I was a bit torn between the "new" and "add" icons for the "add dive" item, since what it really does is create a new dive, but the "add" icon is an uninteresting sheet of paper in the default icon theme so I decided to use the "add" icon. Signed-off-by: Mikko Rasa <tdb@tdb.fi>
This commit is contained in:
parent
a5e822a4d6
commit
d8c8ada6c7
3 changed files with 23 additions and 13 deletions
|
|
@ -702,10 +702,12 @@ void add_dive_cb(GtkWidget *menuitem, gpointer data)
|
|||
|
||||
static void popup_divelist_menu(GtkTreeView *tree_view, GtkTreeModel *model, int button)
|
||||
{
|
||||
GtkWidget *menu, *menuitem;
|
||||
GtkWidget *menu, *menuitem, *image;
|
||||
|
||||
menu = gtk_menu_new();
|
||||
menuitem = gtk_menu_item_new_with_label("Add dive");
|
||||
menuitem = gtk_image_menu_item_new_with_label("Add dive");
|
||||
image = gtk_image_new_from_stock(GTK_STOCK_ADD, GTK_ICON_SIZE_MENU);
|
||||
gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuitem), image);
|
||||
g_signal_connect(menuitem, "activate", G_CALLBACK(add_dive_cb), model);
|
||||
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
|
||||
gtk_widget_show_all(menu);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue