aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-01-24 03:31:23 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-01-24 03:31:23 +0800
commit392239818d860883452d2e5ec2ca7fe8fa110845 (patch)
tree836564d651af49254099089a1c991466a11f89ad /shell
parentb110f7e404759128793256335e7bff866ce97d81 (diff)
downloadgsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.tar
gsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.tar.gz
gsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.tar.bz2
gsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.tar.lz
gsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.tar.xz
gsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.tar.zst
gsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.zip
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
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog9
-rw-r--r--shell/e-shell-folder-title-bar.c6
-rw-r--r--shell/e-shell-view.c2
3 files changed, 13 insertions, 4 deletions
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 <ettore@ximian.com>
+
+ * 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 <ettore@ximian.com>
[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;