-
-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
qucs-s windows uses old icon mac uses new one #929
Comments
It's need to replace icons in |
256x256 looks good on Full HD screen i changed in innosetup locally and build exe, Qt page says convert icon to ico file, i think svg not supported. |
ico file can store multiple resoultion icons in a single file using
|
I sent a PR #932 to fixed windows icon but app title icon not changed it needs to be changed in Qt code |
The window title icon is set inside |
#ifndef __APPLE__
setWindowIcon (QPixmap(QString(":/bitmaps/hicolor/scalable/apps/qucs.svg")));
#else I tested this usage and succesfully render both app and title svg icon. about diolog also used 128x128 png maybe this one can be used there. Why you think the existing icon should remain (big.qucs.xpm) generally app and title icons are same. |
Yes, this one could be accepted. |
Hi, this is the difference mac and windows icon and qucs-s.exe normally uses different icon but innosetup changed icon to old icon but not visible in explore it's strange. We should set app icon using Qt API and CMake. I created new.ico based on qucs-s.svg in qucs/bitmaps .
The text was updated successfully, but these errors were encountered: