This commit is contained in:
Thomas resiX 2025-02-15 08:39:23 +01:00
parent ac35692272
commit bc4098b015
5 changed files with 4 additions and 1 deletions

BIN
Video-Datenbank-16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
Video-Datenbank-256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

BIN
Video-Datenbank-32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -18,7 +18,7 @@ HEADERS += \
FORMS += \
mainwindow.ui
RC_ICONS = Video-Datenbank.ico
win32: RC_ICONS = Video-Datenbank.ico
RESOURCES += \
Video-Datenbank.qrc

View file

@ -4,6 +4,9 @@
int main(int argc, char *argv[]){
QApplication a(argc, argv);
#ifdef __linux__
a.setWindowIcon(QIcon("/usr/local/share/icons/Video-Datenbank/Video-Datenbank-32.png"));
#endif
MainWindow w;
w.show();
return a.exec();