2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-17 18:52:06 +00:00

chore: set gtk application name for linux

This commit is contained in:
Jan Laupetin
2025-10-11 21:54:33 +02:00
parent d86b70e006
commit 0f3ce55eab

View File

@@ -119,6 +119,11 @@ int main(int argc, const char** argv)
} }
#endif #endif
#ifdef __linux__
g_set_prgname("OpenAssetTools-ModMan");
g_set_application_name("OpenAssetTools ModMan");
#endif
ModManArgs args; ModManArgs args;
auto shouldContinue = true; auto shouldContinue = true;
if (!args.ParseArgs(MODMAN_ARGC, MODMAN_ARGV, shouldContinue)) if (!args.ParseArgs(MODMAN_ARGC, MODMAN_ARGV, shouldContinue))