From 7bccc673113041c2a3229fc12d252ec48bbe00e2 Mon Sep 17 00:00:00 2001 From: SrS2225a Date: Tue, 31 Dec 2024 19:56:42 -0800 Subject: [PATCH] changed GLFW_WAYLAND_APP_ID, to the correct string name --- core/backends/glfw/backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/backends/glfw/backend.cpp b/core/backends/glfw/backend.cpp index 8f9b0bcc..6bbd4d9f 100644 --- a/core/backends/glfw/backend.cpp +++ b/core/backends/glfw/backend.cpp @@ -99,7 +99,7 @@ namespace backend { glfwWindowHint(GLFW_CLIENT_API, OPENGL_VERSIONS_IS_ES[i] ? GLFW_OPENGL_ES_API : GLFW_OPENGL_API); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, OPENGL_VERSIONS_MAJOR[i]); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, OPENGL_VERSIONS_MINOR[i]); - glfwWindowHintString(GLFW_WAYLAND_APP_ID, "SDR++"); + glfwWindowHintString(GLFW_WAYLAND_APP_ID, "sdrpp"); // Create window with graphics context monitor = glfwGetPrimaryMonitor();