aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja4
-rw-r--r--src/mainwindow.c2
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dafdb3db..aecf9b1e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-11-16
+ * src/mainwindow.c: main_window_create(): modified the height of
+ the statusbar.
+
+2006-11-16
+
* src/summaryview.c: periodically update UI on manual filtering.
2006-11-15
diff --git a/ChangeLog.ja b/ChangeLog.ja
index d07413a8..3d38b54d 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,9 @@
2006-11-16
+ * src/mainwindow.c: main_window_create(): ステータスバーの高さを調整。
+
+2006-11-16
+
* src/summaryview.c: 手動振り分け時に定期的に UI を更新するようにした。
2006-11-15
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 8a64541c..9d2a4edc 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -940,7 +940,7 @@ MainWindow *main_window_create(SeparateType type)
gtk_button_set_relief(GTK_BUTTON(online_switch), GTK_RELIEF_NONE);
GTK_WIDGET_UNSET_FLAGS(online_switch, GTK_CAN_FOCUS);
#ifdef G_OS_WIN32
- gtk_widget_set_size_request(online_switch, 34, 18);
+ gtk_widget_set_size_request(online_switch, 34, 20);
#else
gtk_widget_set_size_request(online_switch, 34, 24);
#endif