• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
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

Revisionb6f2c32ee00d96f89ab7dceb1ffbb0b100443596 (tree)
Time2012-05-18 01:11:19
AuthorKimura Youichi <kim.upsilon@bucy...>
CommiterKimura Youichi

Log Message

タブの未読表示が解除されない問題を修正

Change Summary

Incremental Difference

--- a/OpenTween/Resources/ChangeLog.txt
+++ b/OpenTween/Resources/ChangeLog.txt
@@ -5,6 +5,7 @@
55 * FIX: メッセージなどに含まれるアプリケーション名の変更漏れを修正
66 * FIX: タスクバーから復元した際に最大化した状態が保持されない問題を修正
77 * FIX: ハートマーク <3 が文字化けして表示されてしまう問題を修正 (thanks @Lolitapple!)
8+ * FIX: タブの未読表示が解除されない場合がある問題を修正
89 * CHG: ツイートに含まれるURLの判定をより厳格に変更
910
1011 ==== Ver 1.0.1(2012/04/09)
--- a/OpenTween/StatusDictionary.cs
+++ b/OpenTween/StatusDictionary.cs
@@ -1690,7 +1690,7 @@ namespace OpenTween
16901690 post = tb.Posts[Id];
16911691 }
16921692
1693- if (post.IsRead = Read) return; //状態変更なければ終了
1693+ if (post.IsRead == Read) return; //状態変更なければ終了
16941694
16951695 post.IsRead = Read; //指定の状態に変更
16961696