From 392239818d860883452d2e5ec2ca7fe8fa110845 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Thu, 23 Jan 2003 19:31:23 +0000 Subject: Update for new args to e_clipped_label_new(). * e-shell-view.c (create_label_for_empty_page): Update for new args to e_clipped_label_new(). * e-shell-folder-title-bar.c (e_shell_folder_title_bar_construct): Make the title label bold and larger using the new args to e_clipped_label_new(). svn path=/trunk/; revision=19592 --- shell/ChangeLog | 9 +++++++++ shell/e-shell-folder-title-bar.c | 6 +++--- shell/e-shell-view.c | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) (limited to 'shell') diff --git a/shell/ChangeLog b/shell/ChangeLog index b98cc6c90c..77e4b991b4 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,12 @@ +2003-01-23 Ettore Perazzoli + + * e-shell-view.c (create_label_for_empty_page): Update for new + args to e_clipped_label_new(). + + * e-shell-folder-title-bar.c (e_shell_folder_title_bar_construct): + Make the title label bold and larger using the new args to + e_clipped_label_new(). + 2002-01-23 Ettore Perazzoli [Port fix for #34129 from evolution-1-2-branch, unread count in diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c index 60f27c9fbc..9b69d17098 100644 --- a/shell/e-shell-folder-title-bar.c +++ b/shell/e-shell-folder-title-bar.c @@ -556,18 +556,18 @@ e_shell_folder_title_bar_construct (EShellFolderTitleBar *folder_title_bar) gtk_misc_set_padding (GTK_MISC (priv->title_icon), 2, 0); gtk_widget_show (priv->title_icon); - priv->title_label = e_clipped_label_new (""); + priv->title_label = e_clipped_label_new ("", PANGO_WEIGHT_BOLD, 1.2); gtk_misc_set_padding (GTK_MISC (priv->title_label), 0, 0); gtk_misc_set_alignment (GTK_MISC (priv->title_label), 0.0, 0.5); set_title_bar_label_style (priv->title_label); - priv->title_button_label = e_clipped_label_new (""); + priv->title_button_label = e_clipped_label_new ("", PANGO_WEIGHT_BOLD, 1.2); gtk_misc_set_padding (GTK_MISC (priv->title_button_label), 2, 0); gtk_misc_set_alignment (GTK_MISC (priv->title_button_label), 0.0, 0.5); gtk_widget_show (priv->title_button_label); set_title_bar_label_style (priv->title_button_label); - priv->folder_bar_label = e_clipped_label_new (""); + priv->folder_bar_label = e_clipped_label_new ("", PANGO_WEIGHT_NORMAL, 1.0); gtk_misc_set_alignment (GTK_MISC (priv->folder_bar_label), 1.0, 0.5); gtk_widget_show (priv->folder_bar_label); set_title_bar_label_style (priv->folder_bar_label); diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 6ce2098eb8..a57ef10579 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -230,7 +230,7 @@ create_label_for_empty_page (void) { GtkWidget *label; - label = e_clipped_label_new (_("(No folder displayed)")); + label = e_clipped_label_new (_("(No folder displayed)"), PANGO_WEIGHT_NORMAL, 1.0); gtk_widget_show (label); return label; -- cgit v1.2.3