Restored media uploading (needs testing). Fixes #240

This commit is contained in:
2021-01-20 10:35:11 -06:00
parent 366b61134e
commit 7457521398
2 changed files with 10 additions and 9 deletions

View File

@@ -41,7 +41,7 @@ class attachDialog(widgetUtils.BaseDialog):
return (openFileDialog.GetPath(), dsc)
def ask_description(self):
dlg = wx.TextEntryDialog(self, _(u"please provide a description"), _(u"Description"), defaultValue="")
dlg = wx.TextEntryDialog(self, _(u"please provide a description"), _(u"Description"))
dlg.ShowModal()
result = dlg.GetValue()
dlg.Destroy()