OSDN Git Service

プロフィール画面のほうにもUserTimelineで開くの設定を反映させるように
authorf_swallow <f_swallow@users.sourceforge.jp>
Sat, 15 Jan 2011 11:52:26 +0000 (11:52 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:18:28 +0000 (23:18 +0900)
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@1354 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/ShowUserInfo.vb

index ecb2886..4ff173c 100644 (file)
@@ -339,7 +339,7 @@ Public Class ShowUserInfo
                 Exit Sub
             Else
                 Dim m As Match = Regex.Match(e.Url.AbsoluteUri, "^https?://twitter.com/(#!/)?(?<name>[a-zA-Z0-9_]+)$")
-                If m.Success AndAlso MyOwner.IsTwitterId(m.Result("${name}")) Then
+                If AppendSettingDialog.Instance.OpenUserTimeline AndAlso m.Success AndAlso MyOwner.IsTwitterId(m.Result("${name}")) Then
                     MyOwner.AddNewTabForUserTimeline(m.Result("${name}"))
                 Else
                     MyOwner.OpenUriAsync(e.Url.OriginalString)