diff --git a/GBM/Forms/frmMain.vb b/GBM/Forms/frmMain.vb
index 9b1b4d1..865c4eb 100644
--- a/GBM/Forms/frmMain.vb
+++ b/GBM/Forms/frmMain.vb
@@ -991,6 +991,8 @@ Public Class frmMain
Private Sub SyncGameIDs(ByVal bOfficial As Boolean)
Dim sLocation As String
+ PauseScan()
+
If mgrCommon.IsUnix Then
sLocation = App_URLImportLinux
Else
@@ -1006,6 +1008,8 @@ Public Class frmMain
mgrMonitorList.SyncGameIDs(sLocation, oSettings, False)
End If
End If
+
+ ResumeScan()
End Sub
Private Sub LocalDatabaseCheck()
diff --git a/GBM/Managers/mgrMonitorList.vb b/GBM/Managers/mgrMonitorList.vb
index 8a2afdd..f880b3e 100644
--- a/GBM/Managers/mgrMonitorList.vb
+++ b/GBM/Managers/mgrMonitorList.vb
@@ -960,6 +960,8 @@ Public Class mgrMonitorList
Cursor.Current = Cursors.Default
+ mgrCommon.ShowMessage(mgrMonitorList_GameIDSyncCompleted, hshSyncIDs.Count.ToString, MsgBoxStyle.Information)
+
End Sub
Public Shared Sub ExportMonitorList(ByVal sLocation As String)
diff --git a/GBM/My Project/Resources.Designer.vb b/GBM/My Project/Resources.Designer.vb
index f668fd2..64060b3 100644
--- a/GBM/My Project/Resources.Designer.vb
+++ b/GBM/My Project/Resources.Designer.vb
@@ -5556,6 +5556,15 @@ Namespace My.Resources
End Get
End Property
+ '''
+ ''' Looks up a localized string similar to Sync Complete.[BR][BR][PARAM] game configurations were matched and updated..
+ '''
+ Friend ReadOnly Property mgrMonitorList_GameIDSyncCompleted() As String
+ Get
+ Return ResourceManager.GetString("mgrMonitorList_GameIDSyncCompleted", resourceCulture)
+ End Get
+ End Property
+
'''
''' Looks up a localized string similar to Import Complete..
'''
diff --git a/GBM/My Project/Resources.resx b/GBM/My Project/Resources.resx
index e5d5567..2cbe4a4 100644
--- a/GBM/My Project/Resources.resx
+++ b/GBM/My Project/Resources.resx
@@ -2062,4 +2062,7 @@
..\Resources\Update.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ Sync Complete.[BR][BR][PARAM] game configurations were matched and updated.
+
\ No newline at end of file