- changed the app main icons, hopefully they are more visible on black backgrounds than the ones that FlatCAM has

This commit is contained in:
Marius Stanciu
2022-03-31 11:28:35 +03:00
committed by Marius
parent 5de1144565
commit c4151631ec
30 changed files with 811 additions and 42 deletions

View File

@@ -316,9 +316,9 @@ class FCShell(TermWidget):
self._edit.set_model_data(self.app.myKeywords)
app_icon = QtGui.QIcon()
app_icon.addFile(self.app.resource_location + '/flatcam_icon16.png', QtCore.QSize(16, 16))
app_icon.addFile(self.app.resource_location + '/flatcam_icon24.png', QtCore.QSize(24, 24))
app_icon.addFile(self.app.resource_location + '/flatcam_icon32.png', QtCore.QSize(32, 32))
app_icon.addFile(self.app.resource_location + '/app16.png', QtCore.QSize(16, 16))
app_icon.addFile(self.app.resource_location + '/app24.png', QtCore.QSize(24, 24))
app_icon.addFile(self.app.resource_location + '/app32.png', QtCore.QSize(32, 32))
self.setWindowIcon(app_icon)
self.setWindowTitle(_("FlatCAM Evo Shell"))