aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-26 09:38:09 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-26 09:38:09 +0000
commit249f5f44800b57602e52fdc0252ad7ed1efc852d (patch)
treeb00166055fd6a9dac02569b1936f3c535f3245bc
parent5355921a7b4e9e5afcb9954ef7777e82be390216 (diff)
alertpanel.c: use smaller size for title font.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@44 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.ja4
-rw-r--r--src/alertpanel.c2
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3219af66..1681186a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2005-01-26
+ * src/alertpanel.c: use smaller size for title font.
+
+2005-01-26
+
* src/codeconv.[ch]: made encoding-specific functions static, and
removed redundant code.
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 0ecb1787..5522326b 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,9 @@
2005-01-26
+ * src/alertpanel.c: タイトルフォントにより小さいサイズを使用。
+
+2005-01-26
+
* src/codeconv.[ch]: 特定のエンコーディング用の関数を static にし、
余分なコードを削除。
diff --git a/src/alertpanel.c b/src/alertpanel.c
index e478bafb..7be98940 100644
--- a/src/alertpanel.c
+++ b/src/alertpanel.c
@@ -241,7 +241,7 @@ static void alertpanel_create(const gchar *title,
font_desc = pango_font_description_new();
pango_font_description_set_weight(font_desc, PANGO_WEIGHT_BOLD);
pango_font_description_set_size
- (font_desc, size * PANGO_SCALE_XX_LARGE);
+ (font_desc, size * PANGO_SCALE_X_LARGE);
}
if (font_desc)
gtk_widget_modify_font(label, font_desc);