1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-19 20:48:00 -05:00

Refactor android to dev.suyu.suyu_emu

This commit is contained in:
Exverge
2024-03-31 20:08:49 -04:00
parent 4a15db8f08
commit 2caadffe4d
214 changed files with 1244 additions and 1250 deletions

View File

@@ -20,7 +20,7 @@ AboutDialog::AboutDialog(QWidget* parent)
ui->setupUi(this);
// Try and request the icon from Qt theme (Linux?)
const QIcon suyu_logo = QIcon::fromTheme(QStringLiteral("org.suyu_emu.suyu"));
const QIcon suyu_logo = QIcon::fromTheme(QStringLiteral("dev.suyu_emu.suyu"));
if (!suyu_logo.isNull()) {
ui->labelLogo->setPixmap(suyu_logo.pixmap(200));
}

View File

@@ -5080,7 +5080,7 @@ int main(int argc, char* argv[]) {
// Fix the Wayland appId. This needs to match the name of the .desktop file without the .desktop
// suffix.
QGuiApplication::setDesktopFileName(QStringLiteral("org.suyu_emu.suyu"));
QGuiApplication::setDesktopFileName(QStringLiteral("dev.suyu_emu.suyu"));
#endif
SetHighDPIAttributes();