Repaired droneSplit Bug I Caused

I accidentally removed a reference to parent that I should not have from
the drone split class.
This commit is contained in:
Master3See
2013-08-01 14:27:04 -06:00
parent fb20847920
commit bc2c12efc4

View File

@@ -26,8 +26,8 @@ DroneSplit.register()
class DroneSpinner(wx.Dialog):
def __init__(self, drone, context):
wx.Dialog.__init__(self, title="Select Amount", size=wx.Size(220, 60))
def __init__(self, parent, drone, context):
wx.Dialog.__init__(self, parent, title="Select Amount", size=wx.Size(220, 60))
self.drone = drone
self.context = context