We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66304c7 commit dc87919Copy full SHA for dc87919
odmtools/gui/frmODMTools.py
@@ -501,11 +501,11 @@ def onClose(self, event):
501
502
#check to see if a script has been created
503
if self.scriptcreate:
504
- msg = wx.MessageDialog(None, 'Would you like to save your editing script',
+ msg = wx.MessageDialog(None, 'Would you like to save your editing script?',
505
'Save Script', wx.YES_NO | wx.ICON_QUESTION)
506
value = msg.ShowModal()
507
if value == wx.ID_YES:
508
- pnlScript.OnSaveAs(event)
+ self.txtPythonScript.OnSaveAs(event)
509
510
# deinitialize the frame manager
511
self.pnlPlot.Close()
0 commit comments