fix closing index form after indexing

This commit is contained in:
Jonathan Jenne 2020-03-12 12:17:38 +01:00
parent 0197ec9827
commit 071f11bf58

View File

@ -2576,6 +2576,7 @@ Public Class frmIndex
DTACTUAL_FILES.Clear()
CancelAttempts = 2
Me.Close()
End If
End If
@ -2591,6 +2592,7 @@ Public Class frmIndex
End If
End If
CancelAttempts = 2
Me.Close()
End If
End If
@ -2626,4 +2628,12 @@ Public Class frmIndex
Private Sub SplitContainer1_SplitterMoved(sender As Object, e As SplitterEventArgs) Handles SplitContainer1.SplitterMoved
CONFIG.Config.SplitterDistanceViewer = SplitContainer1.SplitterDistance
End Sub
Private Sub frmIndex_Closed(sender As Object, e As EventArgs) Handles Me.Closed
End Sub
Private Sub frmIndex_Closing(sender As Object, e As CancelEventArgs) Handles Me.Closing
End Sub
End Class