• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revisión72325060fb4546e85926349f229764be2e012fef (tree)
Tiempo2011-01-22 18:13:11
Autorazyobuzin <azyobuzin@user...>
Commiterazyobuzin

Log Message

firstをfalseにするのを忘れてた

Cambiar Resumen

  • delete: "\202\302\202\242\202\351\202\361\202\351\202\361/Controls/Tabs/DirectMessagesTimelineTabPage.cs"
  • delete: "\202\302\202\242\202\351\202\361\202\351\202\361/Controls/Tabs/MentionsTabPage.cs"

Diferencia incremental

--- "a/\202\302\202\242\202\351\202\361\202\351\202\361/Controls/Tabs/DirectMessagesTimelineTabPage.cs"
+++ "b/\202\302\202\242\202\351\202\361\202\351\202\361/Controls/Tabs/DirectMessagesTimelineTabPage.cs"
@@ -17,6 +17,7 @@ namespace Azyobuzi.Twirunrun
1717 .ToList();
1818 if (e.NewItems.Count != 0 && !first)
1919 {
20+ first = false;
2021 var newTweets = e.NewItems.OfType<StatusInfo>().Where(tweet => tweet.Type == StatusTypes.DirectMessage);
2122 if (newTweets.Any()) this.NotifyNewItems(newTweets.OrderByDescending(_ => _));
2223 }
--- "a/\202\302\202\242\202\351\202\361\202\351\202\361/Controls/Tabs/MentionsTabPage.cs"
+++ "b/\202\302\202\242\202\351\202\361\202\351\202\361/Controls/Tabs/MentionsTabPage.cs"
@@ -26,6 +26,7 @@ namespace Azyobuzi.Twirunrun
2626 //新着通知
2727 if (e.NewItems.Count != 0 && !first)
2828 {
29+ first = false;
2930 var newTweets = e.NewItems.OfType<StatusInfo>().Where(tweet => mentionCheckRegex.IsMatch(tweet.Text));
3031 if (newTweets.Any()) NotifyNewItems(newTweets.OrderByDescending(_ => _));
3132 }