summaryrefslogtreecommitdiff
path: root/components/rpmview
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-04-21 20:59:02 +0000
committerDarin Adler <darin@src.gnome.org>2000-04-21 20:59:02 +0000
commitef2dc9effc8a9f51fa22b10200e651ba67f17d55 (patch)
tree2aa244cf80fee44f688b15af5797b30ba302d7e0 /components/rpmview
parente04de292ad06d41940d837bcc95f33aa6e150c97 (diff)
downloadnautilus-ef2dc9effc8a9f51fa22b10200e651ba67f17d55.tar.gz
Fixed a typo that was causing the history view to fail.
* components/history/ntl-history-view.c (hyperbola_navigation_history_notify_location_change): Fixed a typo that was causing the history view to fail. * components/music/nautilus-music-view.c (nautilus_music_view_initialize_class), (nautilus_music_view_initialize), (setup_title_font), (nautilus_music_view_realize): Changed to use new nautilus_gtk_widget_set_font_by_name and got rid of the old realize hack. * components/rpmview/nautilus-rpm-view.c (nautilus_rpm_view_initialize): Added a FIXME about how it's bad to hard-wire a font. * components/services/startup/nautilus-service-startup-view.c (setup_title_font), (setup_form_title), (nautilus_service_startup_view_initialize), (nautilus_service_startup_view_realize), (nautilus_service_startup_view_load_uri): Changed to use new nautilus_gtk_widget_set_font_by_name and got rid of the old realize hack. * libnautilus-extensions/nautilus-gtk-extensions.h: * libnautilus-extensions/nautilus-gtk-extensions.c (nautilus_gtk_style_set_font): Made public. (nautilus_gtk_widget_set_font): Added comments and checks on the parameters. * libnautilus-extensions/nautilus-icon-container.c (relayout), (idle_handler), (nautilus_icon_container_move_icon), (world_width_changed), (end_stretching), (button_release_event), (handle_icon_button_press), (nautilus_icon_container_add_auto), (nautilus_icon_container_remove), (nautilus_icon_container_set_auto_layout): Some tweaks for auto-layout mode. Made it work better with stretching by not laying out the currently-stretched icon, simplified the code a bit, and made it relayout when an icon is removed. * src/file-manager/fm-directory-view.c (compute_menu_item_info), (fm_directory_view_real_merge_menus): Got rid of the "..." from "Delete...". On Macintosh, at least, the "..." is only used when the dialog is something that adds parameters to the command, not when it's just a confirmation. * src/nautilus-index-title.c (update_font), (nautilus_index_title_update_label), (nautilus_index_title_update_info): Changed to use new nautilus_gtk_widget_set_font and nautilus_gtk_widget_set_font_by_name. * src/ntl-index-panel.c (nautilus_index_panel_remove_meta_view): Made the index panel do *slightly* better when a meta view fails to load. * components/help/hyperbola-main.c (main): Fixed a warning.
Diffstat (limited to 'components/rpmview')
-rw-r--r--components/rpmview/nautilus-rpm-view.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/rpmview/nautilus-rpm-view.c b/components/rpmview/nautilus-rpm-view.c
index e7f3f2411..41ea6bc63 100644
--- a/components/rpmview/nautilus-rpm-view.c
+++ b/components/rpmview/nautilus-rpm-view.c
@@ -176,6 +176,7 @@ nautilus_rpm_view_initialize (NautilusRPMView *rpm_view)
/* allocate the name field */
rpm_view->details->package_title = gtk_label_new ("Package Title");
+ /* FIXME: don't use hardwired font like this */
nautilus_gtk_widget_set_font_by_name (rpm_view->details->package_title,
"-*-helvetica-medium-r-normal-*-18-*-*-*-*-*-*-*");
gtk_box_pack_start (GTK_BOX (temp_title_box), rpm_view->details->package_title, 0, 0, 0);