From d82d208be24c446582fd4726d794b32e8fe51f84 Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Fri, 23 Aug 2002 07:03:52 +0000 Subject: [PATCH] fix folder and search exchanging positions --- ChangeLog.claws | 9 ++++++++- configure.in | 2 +- src/summaryview.c | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index 6713a8fed..f1930d248 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,4 +1,11 @@ -2002-08-22 [colin] 0.8.1claws103 +2002-08-23 [colin] 0.8.1claws104 + + * src/summaryview.c + Fix folder and search pixmaps exchanging positions + after theme or toolbar changes. Thank to Oliver for + reporting this. + +2002-08-23 [colin] 0.8.1claws103 * src/mainwindow.c src/messageview.[ch] diff --git a/configure.in b/configure.in index 92c60fdc9..9146718e4 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=8 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws103 +EXTRA_VERSION=claws104 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/summaryview.c b/src/summaryview.c index 4aa0d32b4..80d9552d2 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -5134,7 +5134,7 @@ void summary_reflect_prefs_pixmap_theme(SummaryView *summaryview) pixmap = stock_pixmap_widget(summaryview->hbox, STOCK_PIXMAP_DIR_OPEN); gtk_box_pack_start(GTK_BOX(summaryview->hbox), pixmap, FALSE, FALSE, 4); - gtk_box_reorder_child(GTK_BOX(summaryview->hbox), pixmap, 0); + gtk_box_reorder_child(GTK_BOX(summaryview->hbox), pixmap, 1); /* search_toggle before */ gtk_widget_show(pixmap); summaryview->folder_pixmap = pixmap; -- 2.25.1