- changed the activity GIF's for the dark theme

- changed some of the dark theme icons to the red color
This commit is contained in:
Marius Stanciu
2022-05-05 05:03:01 +03:00
committed by Marius
parent 73ae30e016
commit 1fd08ca30b
91 changed files with 62 additions and 46 deletions

View File

@@ -5487,6 +5487,9 @@ class FlatCAMActivityView(QtWidgets.QWidget):
elif icon_kind == "Eclipse green":
icon = icon_location + '/active_4_static.png'
movie = icon_location + "/active_4.gif"
elif icon_kind == "Spinner green":
icon = icon_location + '/active_5_static.png'
movie = icon_location + "/active_5.gif"
else:
icon = icon_location + '/active_static.png'
movie = icon_location + "/active.gif"
@@ -5700,7 +5703,7 @@ class AppSystemTray(QtWidgets.QSystemTrayIcon):
self.menu_open.addSeparator()
# Open Gerber ...
menu_opengerber = QtGui.QAction(QtGui.QIcon(self.app.resource_location + '/flatcam_icon24.png'),
menu_opengerber = QtGui.QAction(QtGui.QIcon(self.app.resource_location + '/open_gerber32.png'),
'%s ...\t%s' % (_('Open Gerber'), _('Ctrl+G')), self)
self.menu_open.addAction(menu_opengerber)