2005-02-03 [paul] 1.0.0cvs25.3
[claws.git] / src / folderview.c
index ab3a5534a62b7ce6ba096abd09dc9a5adc8d4798..e0943e8b81be1929b079fd1cc6e9f591320f8fc8 100644 (file)
@@ -518,13 +518,15 @@ void folderview_init(FolderView *folderview)
        if (!bold_style) {
                PangoFontDescription *font_desc;
                bold_style = gtk_style_copy(gtk_widget_get_style(ctree));
-               font_desc = pango_font_description_from_string(prefs_common.boldfont);
+               font_desc = pango_font_description_from_string(BOLD_FONT);
                if (font_desc) {
                        if (bold_style->font_desc)
                                pango_font_description_free
                                        (bold_style->font_desc);
                        bold_style->font_desc = font_desc;
                }
+               pango_font_description_set_weight
+                       (bold_style->font_desc, PANGO_WEIGHT_BOLD);
                bold_color_style = gtk_style_copy(bold_style);
                bold_color_style->fg[GTK_STATE_NORMAL] = folderview->color_new;