diff --git a/README.md b/README.md index a525088b..b52256c2 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ CAD program, and create G-Code for Isolation routing. - fixed bug in Gerber editor that did not allow to display all shapes after it encountered one shape without 'solid' geometry - fixed bug in Gerber Editor -> selection area handler where if some of the selected shapes did not had the 'solid' geometry will silently abort selection of further shapes - added new control in Edit -> Preferences -> General -> Gui Preferences -> Activity Icon. Will select a GIF from a selection, the one used to show that FlatCAM is working. +- changed the script icon to a smaller one in the sys tray menu 18.09.2019 diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py index 71b86b2f..6fca1787 100644 --- a/flatcamGUI/FlatCAMGUI.py +++ b/flatcamGUI/FlatCAMGUI.py @@ -8231,7 +8231,7 @@ class FlatCAMSystemTray(QtWidgets.QSystemTrayIcon): menu = QtWidgets.QMenu(parent) - menu_runscript = QtWidgets.QAction(QtGui.QIcon('share/script16.png'), '%s' % _('Run Script ...'), self) + menu_runscript = QtWidgets.QAction(QtGui.QIcon('share/script14.png'), '%s' % _('Run Script ...'), self) menu_runscript.setToolTip( _("Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" diff --git a/share/script14.png b/share/script14.png new file mode 100644 index 00000000..574db406 Binary files /dev/null and b/share/script14.png differ