mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Round macOS icon
This commit is contained in:
parent
f0093375b8
commit
af95ff5f8b
3 changed files with 4 additions and 0 deletions
BIN
rpcs3/rpcs3.icns
BIN
rpcs3/rpcs3.icns
Binary file not shown.
|
@ -6,7 +6,9 @@
|
||||||
|
|
||||||
fatal_error_dialog::fatal_error_dialog(std::string_view text) : QMessageBox()
|
fatal_error_dialog::fatal_error_dialog(std::string_view text) : QMessageBox()
|
||||||
{
|
{
|
||||||
|
#ifndef __APPLE__
|
||||||
setWindowIcon(QIcon(":/rpcs3.ico"));
|
setWindowIcon(QIcon(":/rpcs3.ico"));
|
||||||
|
#endif
|
||||||
setWindowTitle(tr("RPCS3: Fatal Error"));
|
setWindowTitle(tr("RPCS3: Fatal Error"));
|
||||||
setIcon(QMessageBox::Icon::Critical);
|
setIcon(QMessageBox::Icon::Critical);
|
||||||
setTextFormat(Qt::TextFormat::RichText);
|
setTextFormat(Qt::TextFormat::RichText);
|
||||||
|
|
|
@ -61,7 +61,9 @@ gui_application::~gui_application()
|
||||||
|
|
||||||
bool gui_application::Init()
|
bool gui_application::Init()
|
||||||
{
|
{
|
||||||
|
#ifndef __APPLE__
|
||||||
setWindowIcon(QIcon(":/rpcs3.ico"));
|
setWindowIcon(QIcon(":/rpcs3.ico"));
|
||||||
|
#endif
|
||||||
|
|
||||||
m_emu_settings.reset(new emu_settings());
|
m_emu_settings.reset(new emu_settings());
|
||||||
m_gui_settings.reset(new gui_settings());
|
m_gui_settings.reset(new gui_settings());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue