Skip to content

Commit f7d49cc

Browse files
committed
Add MessageBox on completion
1 parent c8aff40 commit f7d49cc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

SparkFunKiCadCAMmer/plugin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ def run_cammer(dlg, p_cammer):
133133
if sysExit > 0:
134134
wx.MessageBox("CAMmer " + ("warning" if (sysExit == 1) else "error") + ".\nPlease check cammer.log for details.",
135135
("Warning" if (sysExit == 1) else "Error"), wx.OK | (wx.ICON_WARNING if (sysExit == 1) else wx.ICON_ERROR))
136+
else:
137+
wx.MessageBox("CAMmer complete.\nPlease check cammer.log for details.",
138+
"Info", wx.OK | wx.ICON_INFORMATION)
136139
else:
137140
self.logger.log(logging.ERROR, "Could not get the board")
138141

0 commit comments

Comments
 (0)