Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions platform/linuxbsd/wayland/display_server_wayland.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ String DisplayServerWayland::_get_app_id_from_context(Context p_context) {

switch (p_context) {
case CONTEXT_EDITOR: {
app_id = "org.godotengine.Editor";
app_id = "org.redotengine.Editor";
} break;

case CONTEXT_PROJECTMAN: {
app_id = "org.godotengine.ProjectManager";
app_id = "org.redotengine.ProjectManager";
} break;

case CONTEXT_ENGINE:
Expand All @@ -86,7 +86,7 @@ String DisplayServerWayland::_get_app_id_from_context(Context p_context) {
if (config_name.length() != 0) {
app_id = config_name;
} else {
app_id = "org.godotengine.Redot";
app_id = "org.redotengine.Redot";
}
}
}
Expand Down
Loading