Skip to content

Commit

Permalink
Add a tooltip showing the full path on menu items representing documents
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Dec 4, 2017
1 parent bd22fef commit 419550a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ui_utils.c
Expand Up @@ -2940,6 +2940,7 @@ void ui_menu_add_document_items_sorted(GtkMenu *menu, GeanyDocument *active,
menu_item = gtk_image_menu_item_new_with_label(base_name);
image = gtk_image_new_from_gicon(doc->file_type->icon, GTK_ICON_SIZE_MENU);
gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item), image);
gtk_widget_set_tooltip_text(menu_item, DOC_FILENAME(doc));

gtk_widget_show(menu_item);
gtk_container_add(GTK_CONTAINER(menu), menu_item);
Expand Down

0 comments on commit 419550a

Please sign in to comment.