Procházet zdrojové kódy

- updated the new objects icons for Gerber, Geometry and Excellon
- RELEASE 8.98

Marius Stanciu před 6 roky
rodič
revize
db31b057a1
10 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. 1 0
      README.md
  2. 3 3
      flatcamGUI/FlatCAMGUI.py
  3. binární
      share/copy_file16.png
  4. binární
      share/copy_file32.png
  5. binární
      share/new_file_exc16.png
  6. binární
      share/new_file_exc32.png
  7. binární
      share/new_file_geo16.png
  8. binární
      share/new_file_geo32.png
  9. binární
      share/new_file_grb16.png
  10. binární
      share/new_file_grb32.png

+ 1 - 0
README.md

@@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing.
 18.10.2019
 
 - finished the update on the Google translated Spanish translation.
+- updated the new objects icons for Gerber, Geometry and Excellon
 - RELEASE 8.98
 
 17.10.2019

+ 3 - 3
flatcamGUI/FlatCAMGUI.py

@@ -74,15 +74,15 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
         self.menufilenew = self.menufile.addMenu(QtGui.QIcon('share/file16.png'), _('&New'))
         self.menufilenew.setToolTipsVisible(True)
 
-        self.menufilenewgeo = self.menufilenew.addAction(QtGui.QIcon('share/geometry16.png'), _('Geometry\tN'))
+        self.menufilenewgeo = self.menufilenew.addAction(QtGui.QIcon('share/new_file_geo16.png'), _('Geometry\tN'))
         self.menufilenewgeo.setToolTip(
             _("Will create a new, empty Geometry Object.")
         )
-        self.menufilenewgrb = self.menufilenew.addAction(QtGui.QIcon('share/flatcam_icon32.png'), _('Gerber\tB'))
+        self.menufilenewgrb = self.menufilenew.addAction(QtGui.QIcon('share/new_file_grb16.png'), _('Gerber\tB'))
         self.menufilenewgrb.setToolTip(
             _("Will create a new, empty Gerber Object.")
         )
-        self.menufilenewexc = self.menufilenew.addAction(QtGui.QIcon('share/drill16.png'), _('Excellon\tL'))
+        self.menufilenewexc = self.menufilenew.addAction(QtGui.QIcon('share/new_file_exc16.png'), _('Excellon\tL'))
         self.menufilenewexc.setToolTip(
             _("Will create a new, empty Excellon Object.")
         )

binární
share/copy_file16.png


binární
share/copy_file32.png


binární
share/new_file_exc16.png


binární
share/new_file_exc32.png


binární
share/new_file_geo16.png


binární
share/new_file_geo32.png


binární
share/new_file_grb16.png


binární
share/new_file_grb32.png