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 e60c9c4 commit e151d3fCopy full SHA for e151d3f
odmtools/gui/wizSave.py
@@ -328,7 +328,11 @@ def on_wizard_finished(self, event):
328
closeSuccessful = True
329
330
elif rbSaveAsExisting:
331
- cont = wx.MessageBox("You are about to overwrite an existing series,\nthis action cannot be undone.\nWould you like to continue?\n",
+ message = "You are about to overwrite an existing series,\nthis action cannot be undone.\nWould you like to continue?\n"
332
+
333
+ if self.pgExisting.pnlExisting.rbAppend:
334
+ message = "You are about to append to an existing series,\nthis action cannot be undone.\nWould you like to continue?\n"
335
+ cont = wx.MessageBox(message,
336
'Are you sure?',
337
wx.YES_NO | wx.ICON_QUESTION)
338
if cont == 2:
0 commit comments