remove misleading comments, do not create a copy of strs

This commit is contained in:
Mesalu
2018-10-22 14:30:17 -07:00
parent 2f8d1b2e9a
commit 484fb84bb9

View File

@@ -3,8 +3,7 @@
evt = wx.CommandEvent()
# NOT evt.SetString(strs) as this would be a shallow copy
evt.SetString(strs[:]) # make a deep copy
evt.SetString(strs)
wx.TheApp.QueueEvent(evt)