aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-title-bar.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-08-23 04:49:12 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-08-23 04:49:12 +0800
commit26a78dd6c542a56f384e474d23274231142ba9d9 (patch)
treed87a22578fa0b58eede202cdf75a54a42d870a71 /shell/e-shell-folder-title-bar.c
parent3e805202e49b8d75d53b69accf3fcc53901dbc20 (diff)
downloadgsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.gz
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.bz2
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.lz
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.xz
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.zst
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.zip
`#if 0'ed out. (make_bold): Likewise.
* e-shell-folder-title-bar.c (label_realize_callback): `#if 0'ed out. (make_bold): Likewise. (e_shell_folder_title_bar_construct): Don't call it. * e-local-storage.c (component_async_remove_folder_callback): Only remove the directory if the component succeeds. svn path=/trunk/; revision=12392
Diffstat (limited to 'shell/e-shell-folder-title-bar.c')
-rw-r--r--shell/e-shell-folder-title-bar.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c
index 1ed1dcca6e..4c13a146a0 100644
--- a/shell/e-shell-folder-title-bar.c
+++ b/shell/e-shell-folder-title-bar.c
@@ -128,8 +128,8 @@ title_button_box_realize_cb (GtkWidget *widget,
}
-/* This is used to make the labels white. Yes, yes, I know I shouldn't do
- this. Yes, yes, I know it's evil. */
+#if 0 /* This code is kinda broken in some subtle way
+ I haven't been able to figure out. */
static void
label_realize_callback (GtkWidget *widget,
@@ -172,6 +172,8 @@ make_bold (GtkWidget *widget)
GTK_SIGNAL_FUNC (label_realize_callback), NULL);
}
+#endif
+
static void
set_title_bar_label_style (GtkWidget *widget)
{
@@ -489,14 +491,14 @@ e_shell_folder_title_bar_construct (EShellFolderTitleBar *folder_title_bar)
gtk_misc_set_padding (GTK_MISC (priv->label), 5, 0);
gtk_misc_set_alignment (GTK_MISC (priv->label), 0.0, 0.5);
set_title_bar_label_style (priv->label);
- make_bold (priv->label);
+ /* make_bold (priv->label); */
priv->button_label = e_clipped_label_new ("");
gtk_misc_set_padding (GTK_MISC (priv->button_label), 2, 0);
gtk_misc_set_alignment (GTK_MISC (priv->button_label), 0.0, 0.5);
gtk_widget_show (priv->button_label);
set_title_bar_label_style (priv->button_label);
- make_bold (priv->label);
+ /* make_bold (priv->label); */
priv->folder_bar_label = e_clipped_label_new ("");
gtk_misc_set_alignment (GTK_MISC (priv->folder_bar_label), 1.0, 0.5);