diff --git a/CHANGELOG.md b/CHANGELOG.md index fc46d5ca..f368bb23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ CHANGELOG for FlatCAM beta - modified the behavior of the Tool Tab in the Notebook widget. Now the app start with the Tool Tab off. If an App Tool is launched then the Tool Tab is added and populated. If the same App Tool is launched again and the focus is in its Tool Tab then the Tool Tab is removed but if the focus is elsewhere then the focus is set again on the Tool Tab. - fixed the App Tools buttons in the Tools section of the Properties Tab for Excellon, Gerber and Geometry objects - made the Tool Tab closable +- fixed a small typo in the Gerber Properties Tab that made the icon for the Cutout Tool not to show up 15.11.2020 diff --git a/appGUI/ObjectUI.py b/appGUI/ObjectUI.py index 813f55d5..603a6b60 100644 --- a/appGUI/ObjectUI.py +++ b/appGUI/ObjectUI.py @@ -385,7 +385,7 @@ class GerberObjectUI(ObjectUI): # ## Board cutout self.generate_cutout_button = FCButton(_('Cutout Tool')) - self.generate_cutout_button.setIcon(QtGui.QIcon(self.app.resource_location + '/cut32_bis.png')) + self.generate_cutout_button.setIcon(QtGui.QIcon(self.app.resource_location + '/cut32.png')) self.generate_cutout_button.setToolTip( _("Generate the geometry for\n" "the board cutout.")