Fix for issue #42

This commit is contained in:
Michael J. Seiferling
2016-03-18 13:09:55 -06:00
parent 2eb6693275
commit 3dbf5d0e62
+2 -1
View File
@@ -338,7 +338,8 @@ Public Class frmIncludeExclude
If lstBuilder.Items.ContainsKey(e.Label) Then If lstBuilder.Items.ContainsKey(e.Label) Then
e.CancelEdit = True e.CancelEdit = True
Else Else
IdentifyEntry(lstBuilder.Items(e.Item), e.Label) 'Unix Handler - Mono is unable to modify list items during an edit event without crashing
If Not mgrCommon.IsUnix Then IdentifyEntry(lstBuilder.Items(e.Item), e.Label)
End If End If
End If End If
End Sub End Sub