diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2021-04-10 19:55:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-10 19:55:48 +0200 |
| commit | 7ce3c8e7a04b86163f3b9f0a206b135411e3293b (patch) | |
| tree | fb9ead1ac9c2d00bede6945b28c44a23d7bed3bc /lib/gui/dialogs.py | |
| parent | 22f1bc5cb007fe44ed5b238d197e5ce83180d33b (diff) | |
output a warning in params if simulation cannot load (#1143)
Diffstat (limited to 'lib/gui/dialogs.py')
| -rw-r--r-- | lib/gui/dialogs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/dialogs.py b/lib/gui/dialogs.py index e270d2e5..326f8c72 100644 --- a/lib/gui/dialogs.py +++ b/lib/gui/dialogs.py @@ -13,7 +13,7 @@ def confirm_dialog(parent, question, caption='ink/stitch'): return result -def info_dialog(parent, message, caption='ink/stitch'): +def info_dialog(parent, message, caption='Ink/Stitch'): dlg = wx.MessageDialog(parent, message, caption, wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy() |
