From 071f11bf583aa394d3b9234c45797b0042368e87 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Thu, 12 Mar 2020 12:17:38 +0100 Subject: [PATCH] fix closing index form after indexing --- Global_Indexer/frmIndex.vb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb index 0e8448e..05dc934 100644 --- a/Global_Indexer/frmIndex.vb +++ b/Global_Indexer/frmIndex.vb @@ -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