diff --git a/capplets/appearance/ChangeLog b/capplets/appearance/ChangeLog index 4455c442b..d2c24ae9f 100644 --- a/capplets/appearance/ChangeLog +++ b/capplets/appearance/ChangeLog @@ -1,3 +1,12 @@ +2007-07-25 Thomas Wood + + Patch by: Dennis Cranston + + * gnome-wp-item.c: (gnome_wp_item_update_description):Simplify tooltip + descriptions. Change "Location" to "Folder". Do not overuse bold text. + Closes bug 460111. + + 2007-07-25 Denis Washington * appearance-style.c: (prepare_list): diff --git a/capplets/appearance/gnome-wp-item.c b/capplets/appearance/gnome-wp-item.c index 8b2d8199c..bd06559d9 100644 --- a/capplets/appearance/gnome-wp-item.c +++ b/capplets/appearance/gnome-wp-item.c @@ -357,17 +357,15 @@ void gnome_wp_item_update_description (GnomeWPItem * item) { item->description = g_strdup (item->name); } else { item->description = - g_markup_printf_escaped (_("%s\n" - "Width: %d %s\n" - "Height: %d %s\n" - "Type: %s\n" - "Location: %s"), + g_markup_printf_escaped (_("%s\n" + "%s, %d %s by %d %s\n" + "Folder: %s"), item->name, + gnome_vfs_mime_get_description (item->fileinfo->mime_type), item->width, ngettext ("pixel", "pixels", item->width), item->height, ngettext ("pixel", "pixels", item->height), - gnome_vfs_mime_get_description (item->fileinfo->mime_type), g_path_get_dirname (item->filename)); } }