• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

OpenTweenのfork


Commit MetaInfo

修订版89f36d5471bbc011c796433de97749e76a668fa4 (tree)
时间2012-06-23 01:30:58
作者Egtra <yusuke.ichinohe@gmai...>
CommiterEgtra

Log Message

発言詳細の表示でIE互換モードの指定をIE8とする。

クリップボードコピー時に<style>の中のテキストがコピーされる問題のため。
http://sourceforge.jp/ticket/browse.php?group_id=6526&tid=28623

更改概述

差异

--- a/OpenTween/Tween.cs
+++ b/OpenTween/Tween.cs
@@ -68,14 +68,14 @@ namespace OpenTween
6868 private Point _tabMouseDownPoint;
6969 private string _rclickTabName; //右クリックしたタブの名前(Tabコントロール機能不足対応)
7070 private readonly object _syncObject = new object(); //ロック用
71- private const string detailHtmlFormatMono1 = "<html><head><meta http-equiv=\"X-UA-Compatible\" content=\"IE=10;IE=9;IE=8\"><style type=\"text/css\"><!-- pre {font-family: \"";
71+ private const string detailHtmlFormatMono1 = "<html><head><meta http-equiv=\"X-UA-Compatible\" content=\"IE=8\"><style type=\"text/css\"><!-- pre {font-family: \"";
7272 private const string detailHtmlFormat2 = "\", sans-serif; font-size: ";
7373 private const string detailHtmlFormat3 = "pt; margin: 0; word-wrap: break-word; color:rgb(";
7474 private const string detailHtmlFormat4 = ");} a:link, a:visited, a:active, a:hover {color:rgb(";
7575 private const string detailHtmlFormat5 = "); } --></style></head><body style=\"margin:0px; background-color:rgb(";
7676 private const string detailHtmlFormatMono6 = ");\"><pre>";
7777 private const string detailHtmlFormatMono7 = "</pre></body></html>";
78- private const string detailHtmlFormat1 = "<html><head><meta http-equiv=\"X-UA-Compatible\" content=\"IE=10;IE=9;IE=8\"><style type=\"text/css\"><!-- p {font-family: \"";
78+ private const string detailHtmlFormat1 = "<html><head><meta http-equiv=\"X-UA-Compatible\" content=\"IE=8\"><style type=\"text/css\"><!-- p {font-family: \"";
7979 private const string detailHtmlFormat6 = ");\"><p><span style=\"vertical-align:text-bottom\">";
8080 private const string detailHtmlFormat7 = "</span></p></body></html>";
8181 private string detailHtmlFormatHeader;