aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.ja4
-rw-r--r--src/summaryview.c12
3 files changed, 17 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index df180377..ce734996 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-09-27
+ * src/summaryview.c: adjusted the width of icon columns for win32.
+
+2006-09-27
+
* src/trayicon.[ch]: trayicon_set_notify(): added. It blinks the tray
icon for 5 seconds.
* src/inc.c: blink the tray icon when new mails arrive.
diff --git a/ChangeLog.ja b/ChangeLog.ja
index f42441d8..910c4448 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,9 @@
2006-09-27
+ * src/summaryview.c: win32 でアイコンカラムの幅を調整。
+
+2006-09-27
+
* src/trayicon.[ch]: trayicon_set_notify(): 追加。トレイアイコンを
5秒間点滅させる。
* src/inc.c: 新着メールが到着したらトレイアイコンを点滅。
diff --git a/src/summaryview.c b/src/summaryview.c
index b626afc9..8ed02a97 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -113,9 +113,15 @@
if (sort_key == key) \
summary_sort(summaryview, sort_key, sort_type);
-#define SUMMARY_COL_MARK_WIDTH 21
-#define SUMMARY_COL_UNREAD_WIDTH 24
-#define SUMMARY_COL_MIME_WIDTH 17
+#ifdef G_OS_WIN32
+# define SUMMARY_COL_MARK_WIDTH 23
+# define SUMMARY_COL_UNREAD_WIDTH 26
+# define SUMMARY_COL_MIME_WIDTH 19
+#else
+# define SUMMARY_COL_MARK_WIDTH 21
+# define SUMMARY_COL_UNREAD_WIDTH 24
+# define SUMMARY_COL_MIME_WIDTH 17
+#endif
static GdkPixbuf *mark_pixbuf;
static GdkPixbuf *deleted_pixbuf;