mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix window icon being stretched
This commit is contained in:
parent
a265d5ac61
commit
f91a4195b6
1
CHANGES
1
CHANGES
|
@ -149,6 +149,7 @@ Misc:
|
|||
0.6 beta 2: (Future)
|
||||
Bugfixes:
|
||||
- Qt: Fix memory search close button (fixes mgba.io/i/769)
|
||||
- Qt: Fix window icon being stretched
|
||||
|
||||
0.6 beta 1: (2017-06-29)
|
||||
- Initial beta for 0.6
|
||||
|
|
|
@ -41,7 +41,7 @@ GBAApp::GBAApp(int& argc, char* argv[])
|
|||
#endif
|
||||
|
||||
#ifndef Q_OS_MAC
|
||||
setWindowIcon(QIcon(":/res/mgba-1024.png"));
|
||||
setWindowIcon(QIcon(":/res/mgba-512.png"));
|
||||
#endif
|
||||
|
||||
QTranslator* translator = new QTranslator(this);
|
||||
|
|
Loading…
Reference in New Issue