aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-09-27 09:04:30 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-09-27 09:04:30 +0000
commit0d504b6421ccc8c32c7d6ba0f9cd1bc3b3914b15 (patch)
tree619e66b25df116f0643abed17bc6cd8085e573fe
parent4d4c78f1bf4f6c1ebc2bf5ea1ea0c57fe3255674 (diff)
adjusted the width of icon columns for win32.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1194 ee746299-78ed-0310-b773-934348b2243d
-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;