OSDN Git Service

SettingLocal のデフォルトのフォント設定に MessageBoxFont を使用
authorKimura Youichi <kim.upsilon@bucyou.net>
Tue, 12 Nov 2013 16:50:28 +0000 (01:50 +0900)
committerKimura Youichi <kim.upsilon@bucyou.net>
Tue, 12 Nov 2013 17:08:26 +0000 (02:08 +0900)
OpenTween/Setting/SettingLocal.cs

index 648522d..f094453 100644 (file)
@@ -86,7 +86,7 @@ namespace OpenTween
         public int PreviewDistance = -1;
 
         [XmlIgnore]
-        public Font FontUnread = new Font(SystemFonts.DefaultFont, FontStyle.Bold | FontStyle.Underline);
+        public Font FontUnread = new Font(SystemFonts.MessageBoxFont, FontStyle.Bold | FontStyle.Underline);
         public string FontUnreadStr
         {
             get { return _fc.ConvertToString(FontUnread); }
@@ -102,7 +102,7 @@ namespace OpenTween
         }
 
         [XmlIgnore]
-        public Font FontRead = System.Drawing.SystemFonts.DefaultFont;
+        public Font FontRead = System.Drawing.SystemFonts.MessageBoxFont;
         public string FontReadStr
         {
             get { return _fc.ConvertToString(FontRead); }
@@ -142,7 +142,7 @@ namespace OpenTween
         }
 
         [XmlIgnore]
-        public Font FontDetail = System.Drawing.SystemFonts.DefaultFont;
+        public Font FontDetail = System.Drawing.SystemFonts.MessageBoxFont;
         public string FontDetailStr
         {
             get { return _fc.ConvertToString(FontDetail); }
@@ -214,7 +214,7 @@ namespace OpenTween
         }
 
         [XmlIgnore]
-        public Font FontInputFont = System.Drawing.SystemFonts.DefaultFont;
+        public Font FontInputFont = System.Drawing.SystemFonts.MessageBoxFont;
         public string FontInputFontStr
         {
             get { return _fc.ConvertToString(FontInputFont); }