Changeset 17819

Show
Ignore:
Timestamp:
08/18/08 08:30:56 (5 years ago)
Author:
syo68k
Message:

リストボックスでのダブルクリック時の処理が正しく動いていなかったので修正

Location:
lang/vb2005/Tween/Tween
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/vb2005/Tween/Tween/OpenURL.vb

    r17802 r17819  
    5050        End If 
    5151 
    52         If UrlList.IndexFromPoint(UrlList.PointToClient(MousePosition)) = -1 Then 
     52        If UrlList.IndexFromPoint(UrlList.PointToClient(Control.MousePosition)) = ListBox.NoMatches Then 
    5353            Exit Sub 
    5454        End If 
    5555 
    56         If UrlList.Items(UrlList.IndexFromPoint(UrlList.PointToClient(MousePosition))) = Nothing Then 
     56        If UrlList.Items(UrlList.IndexFromPoint(UrlList.PointToClient(Control.MousePosition))) = Nothing Then 
    5757            Exit Sub 
    5858        End If 
  • lang/vb2005/Tween/Tween/TabDialog.vb

    r17802 r17819  
    467467        End If 
    468468 
    469         If ListFilters.IndexFromPoint(ListFilters.PointToClient(MousePosition)) = -1 Then 
     469        If ListFilters.IndexFromPoint(ListFilters.PointToClient(Control.MousePosition)) = -1 Then 
    470470            Exit Sub 
    471471        End If 
    472472 
    473         If ListFilters.Items(ListFilters.IndexFromPoint(ListFilters.PointToClient(MousePosition))) = Nothing Then 
     473        If ListFilters.Items(ListFilters.IndexFromPoint(ListFilters.PointToClient(Control.MousePosition))) = Nothing Then 
    474474            Exit Sub 
    475475        End If