diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-24 03:31:23 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-24 03:31:23 +0800 |
commit | 392239818d860883452d2e5ec2ca7fe8fa110845 (patch) | |
tree | 836564d651af49254099089a1c991466a11f89ad /shell/e-shell-folder-title-bar.c | |
parent | b110f7e404759128793256335e7bff866ce97d81 (diff) | |
download | gsoc2013-evolution-392239818d860883452d2e5ec2ca7fe8fa110845.tar.gz 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/e-shell-folder-title-bar.c')
-rw-r--r-- | shell/e-shell-folder-title-bar.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); |