From: Darko Koruga Date: Fri, 30 Aug 2002 05:25:45 +0000 (+0000) Subject: Copy Gtk style from normal style to match font size for coloured folders. X-Git-Tag: endian_last_merge~8 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=1c0be4887f16b26d75ee7072f52a4d75ba7071d4 Copy Gtk style from normal style to match font size for coloured folders. --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 81a6de13c..18e402f53 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,4 +1,10 @@ -2002-08-29 [alfons] +2002-08-30 [darko] 0.8.2claws11 + + * src/folderview.c + copy Gtk style from normal style to match + font size for coloured folders + +2002-08-29 [alfons] 0.8.2claws10 * sylpheed.desktop Type=Internet <- Type=Application diff --git a/configure.in b/configure.in index 3ecd3badc..1e515ff81 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=8 MICRO_VERSION=2 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws9 +EXTRA_VERSION=claws11 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/folderview.c b/src/folderview.c index ab33f28b7..cee090a58 100644 --- a/src/folderview.c +++ b/src/folderview.c @@ -1218,7 +1218,7 @@ static void folderview_update_node(FolderView *folderview, GtkCTreeNode *node) GdkColor gdk_color; gtkut_convert_int_to_gdk_color(item->prefs->color, &gdk_color); - color_style = gtk_style_copy(gtk_widget_get_style(GTK_WIDGET(ctree))); + color_style = gtk_style_copy(normal_style); color_style->fg[GTK_STATE_NORMAL] = gdk_color; style = color_style; } else {