Commit 187f57e27f2b42a227cd2b07cfb4b6a084a4ad53
1 parent
d3df8b24
Exists in
master
and in
68 other branches
ENH: Dialog message
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
invesalius/gui/task_exporter.py
... | ... | @@ -215,8 +215,9 @@ class InnerTaskPanel(wx.Panel): |
215 | 215 | (filename, filetype)) |
216 | 216 | else: |
217 | 217 | dlg = wx.MessageDialog(None, |
218 | - "Create a surface and make it visible in order to export it.", | |
219 | - 'InVesalius 3 - Warning', | |
218 | + "You need to create a surface and make it "+ | |
219 | + "visible before exporting it.", | |
220 | + 'InVesalius Information', | |
220 | 221 | wx.OK | wx.ICON_INFORMATION) |
221 | 222 | try: |
222 | 223 | dlg.ShowModal() | ... | ... |