Common/DocumentResultList: Fix not being able to group columns anymore, because of dragdrop stuff
This commit is contained in:
parent
04044b2ccd
commit
fc97ec6be9
@ -788,6 +788,10 @@ Public Class frmDocumentResultList
|
||||
Private Sub GridView1_MouseMove(sender As GridView, e As MouseEventArgs) Handles GridView1.MouseMove
|
||||
If e.Button AndAlso e.Button = MouseButtons.Left Then
|
||||
If _DragBoxFromMouseDown <> Rectangle.Empty And Not _DragBoxFromMouseDown.Contains(e.X, e.Y) Then
|
||||
|
||||
Dim oHitInfo = sender.CalcHitInfo(e.Location)
|
||||
|
||||
If oHitInfo.InRow Then
|
||||
If _DocumentInfo IsNot Nothing AndAlso _DocumentInfo.AccessRight > Rights.AccessRight.VIEW_ONLY Then
|
||||
_ScreenOffset = SystemInformation.WorkingArea.Location
|
||||
|
||||
@ -799,5 +803,6 @@ Public Class frmDocumentResultList
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
End Class
|
||||
Loading…
x
Reference in New Issue
Block a user