parent
4a24ba6e77
commit
e3aa67792c
1 changed files with 6 additions and 1 deletions
|
@ -3017,7 +3017,12 @@ void OS_X11::set_context(int p_context) {
|
||||||
|
|
||||||
if (p_context == CONTEXT_ENGINE) {
|
if (p_context == CONTEXT_ENGINE) {
|
||||||
classHint->res_name = (char *)"Godot_Engine";
|
classHint->res_name = (char *)"Godot_Engine";
|
||||||
config_name = strdup((char *)((String)GLOBAL_GET("application/config/name")).utf8().ptrw());
|
char *config_name_tmp = (char *)((String)GLOBAL_GET("application/config/name")).utf8().ptrw();
|
||||||
|
if (config_name_tmp)
|
||||||
|
config_name = strdup(config_name_tmp);
|
||||||
|
else
|
||||||
|
config_name = strdup("Godot Engine");
|
||||||
|
|
||||||
wm_class = config_name;
|
wm_class = config_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue