2 Commits

Author SHA1 Message Date
Jonathan Jenne
f167c6558a Zooflow: Version 1.3.0.2 2022-06-14 14:12:54 +02:00
Jonathan Jenne
2e1e981b0f Zooflow: Fix sorting searches 2022-06-14 14:12:37 +02:00
2 changed files with 5 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyCompany("Digital Data")>
<Assembly: AssemblyProduct("ZooFlow")>
<Assembly: AssemblyCopyright("Copyright © 2022")>
<Assembly: AssemblyTrademark("1.3.0.1")>
<Assembly: AssemblyTrademark("1.3.0.2")>
<Assembly: AssemblyCulture("")>
' Setting ComVisible to false makes the types in this assembly not visible
@@ -32,5 +32,5 @@ Imports System.Runtime.InteropServices
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
' [assembly: AssemblyVersion("1.0.*")]
<Assembly: AssemblyVersion("1.3.0.1")>
<Assembly: AssemblyVersion("1.3.0.2")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -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