From 11e2ec6366cddf63fbfcb560cdfb2c417126cf70 Mon Sep 17 00:00:00 2001 From: easyw Date: Tue, 18 Feb 2020 09:56:51 +0100 Subject: [PATCH] better messaging for pcb2dxf --- PcbToDxf/action_menu_pcb2dxf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PcbToDxf/action_menu_pcb2dxf.py b/PcbToDxf/action_menu_pcb2dxf.py index 16c7c94..84caf88 100644 --- a/PcbToDxf/action_menu_pcb2dxf.py +++ b/PcbToDxf/action_menu_pcb2dxf.py @@ -257,7 +257,7 @@ class pcb2dxf( pcbnew.ActionPlugin ): #found_selected=False #board = pcbnew.GetBoard() - dlg=wx.MessageBox( 'Only SAVED board file will be exported to DXF file', 'Confirm', wx.OK | wx.CANCEL | wx.ICON_INFORMATION ) + dlg=wx.MessageBox( 'Exporting technical layers of pcb to DXF\nOnly SAVED board file will be exported to DXF file\n\nversion '+___version___, 'Confirm', wx.OK | wx.CANCEL | wx.ICON_INFORMATION ) if dlg == wx.OK: if os.path.isfile(out_filename): dlg=wx.MessageBox( 'Overwrite DXF file?', 'Confirm', wx.YES_NO | wx.NO_DEFAULT | wx.ICON_QUESTION )