diff --git a/GUIs.ZooFlow/Search/frmSearchFlow.vb b/GUIs.ZooFlow/Search/frmSearchFlow.vb index 12a642a1..d6044eb2 100644 --- a/GUIs.ZooFlow/Search/frmSearchFlow.vb +++ b/GUIs.ZooFlow/Search/frmSearchFlow.vb @@ -386,14 +386,11 @@ Public Class frmSearchFlow End Sub Private Sub ViewSearches_CustomColumnSort(sender As Object, e As Views.Base.CustomColumnSortEventArgs) Handles ViewSearches.CustomColumnSort - Console.WriteLine() - - If TypeOf e.RowObject1 Is CustomSearch Then - e.Result = 1 - e.Handled = True - Else + If TypeOf e.RowObject1 Is CustomSearch Or TypeOf e.RowObject2 Is CustomSearch Then e.Result = -1 e.Handled = True + Else + e.Handled = False End If End Sub End Class \ No newline at end of file