[Tween-svn] [1488] コードが不足してた分を追加

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 3月 10日 (木) 19:54:09 JST


Revision: 1488
          http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1488
Author:   f_swallow
Date:     2011-03-10 19:54:09 +0900 (Thu, 10 Mar 2011)

Log Message:
-----------
コードが不足してた分を追加

Modified Paths:
--------------
    trunk/Tween/Tween.vb


-------------- next part --------------
Modified: trunk/Tween/Tween.vb
===================================================================
--- trunk/Tween/Tween.vb	2011-03-10 10:36:58 UTC (rev 1487)
+++ trunk/Tween/Tween.vb	2011-03-10 10:54:09 UTC (rev 1488)
@@ -780,6 +780,8 @@
         SettingDialog.UserstreamStartup = _cfgCommon.UserstreamStartup
         SettingDialog.UserstreamPeriodInt = _cfgCommon.UserstreamPeriod
         SettingDialog.OpenUserTimeline = _cfgCommon.OpenUserTimeline
+        SettingDialog.ListDoubleClickAction = _cfgCommon.ListDoubleClickAction
+        SettingDialog.UserAppointUrl = _cfgCommon.UserAppointUrl
 
         'ハッシュタグ関連
         HashSupl = New AtIdSupplement(_cfgCommon.HashTags, "#")
@@ -2537,7 +2539,26 @@
     End Sub
 
     Private Sub MyList_MouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs)
-        MakeReplyOrDirectStatus()
+        Select Case SettingDialog.ListDoubleClickAction
+            Case 0
+                MakeReplyOrDirectStatus()
+            Case 1
+                FavoriteChange(True)
+            Case 2
+                If _curPost IsNot Nothing Then
+                    ShowUserStatus(_curPost.ScreenName, False)
+                End If
+            Case 3
+                ShowUserTimeline()
+            Case 4
+                ShowRelatedStatusesMenuItem_Click(Nothing, Nothing)
+            Case 5
+                MoveToHomeToolStripMenuItem_Click(Nothing, Nothing)
+            Case 6
+                StatusOpenMenuItem_Click(Nothing, Nothing)
+            Case 7
+                '動作なし
+        End Select
     End Sub
 
     Private Sub FavAddToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FavAddToolStripMenuItem.Click, FavOpMenuItem.Click
@@ -6072,6 +6093,8 @@
             _cfgCommon.OpenUserTimeline = SettingDialog.OpenUserTimeline
             _cfgCommon.ListCountApi = SettingDialog.ListCountApi
             _cfgCommon.UseImageService = ImageServiceCombo.SelectedIndex
+            _cfgCommon.ListDoubleClickAction = SettingDialog.ListDoubleClickAction
+            _cfgCommon.UserAppointUrl = SettingDialog.UserAppointUrl
 
             _cfgCommon.Save()
         End SyncLock



Tween-svn メーリングリストの案内
Back to archive index