• R/O
  • SSH
  • HTTPS

tween: コミット


コミットメタ情報

リビジョン1640 (tree)
日時2011-10-24 18:22:50
作者syo68k

ログメッセージ

バルーンクリックなどの際にZオーダー最前面に来ない場合があるので対策した

変更サマリ

差分

--- trunk/Tween/Tween.vb (revision 1639)
+++ trunk/Tween/Tween.vb (revision 1640)
@@ -2085,6 +2085,7 @@
20852085 Me.WindowState = FormWindowState.Normal
20862086 End If
20872087 Me.Activate()
2088+ Me.BringToFront()
20882089 End Sub
20892090
20902091 Private Shared Function CheckAccountValid() As Boolean
@@ -2777,6 +2778,7 @@
27772778 Me.WindowState = FormWindowState.Normal
27782779 End If
27792780 Me.Activate()
2781+ Me.BringToFront()
27802782 End If
27812783 End Sub
27822784
@@ -8650,6 +8652,7 @@
86508652 ImagefilePathText.Text = CType(e.Data.GetData(DataFormats.FileDrop, False), String())(0)
86518653 ImageFromSelectedFile()
86528654 Me.Activate()
8655+ Me.BringToFront()
86538656 StatusText.Focus()
86548657 ElseIf e.Data.GetDataPresent(DataFormats.StringFormat) Then
86558658 Dim data As String = TryCast(e.Data.GetData(DataFormats.StringFormat, True), String)
@@ -9951,6 +9954,7 @@
99519954 Google.GASender.GetInstance().TrackPage("/user_profile", tw.UserId)
99529955 userinfo.ShowDialog(Me)
99539956 Me.Activate()
9957+ Me.BringToFront()
99549958 Google.GASender.GetInstance().TrackPage("/home_timeline", tw.UserId)
99559959 End Using
99569960 End Sub
@@ -10072,6 +10076,7 @@
1007210076 Me.Visible = True
1007310077 If Me.WindowState = FormWindowState.Minimized Then Me.WindowState = FormWindowState.Normal
1007410078 Me.Activate()
10079+ Me.BringToFront()
1007510080 Me.StatusText.Focus()
1007610081 End If
1007710082 End Sub
@@ -10897,6 +10902,7 @@
1089710902 Me.Visible = True
1089810903 If Me.WindowState = FormWindowState.Minimized Then Me.WindowState = FormWindowState.Normal
1089910904 Me.Activate()
10905+ Me.BringToFront()
1090010906 Me.StatusText.Focus()
1090110907 End Sub)
1090210908 End If
旧リポジトリブラウザで表示