We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96e1ec5 commit 06ec49cCopy full SHA for 06ec49c
Framework/Renderer/Window/Window.cpp
@@ -152,6 +152,7 @@ void UImGui::WindowInternal::createWindow() noexcept
152
153
#ifdef GLFW_PLATFORM_X11
154
glfwWindowHintString(GLFW_X11_CLASS_NAME, Instance::get()->applicationName.c_str());
155
+ glfwWindowHintString(GLFW_X11_INSTANCE_NAME, Instance::get()->applicationName.c_str());
156
#endif
157
#ifdef GLFW_PLATFORM_WAYLAND
158
glfwWindowHintString(GLFW_WAYLAND_APP_ID, Instance::get()->applicationName.c_str());
@@ -318,4 +319,4 @@ void UImGui::WindowInternal::setIcon(const String name) const noexcept
318
319
glfwSetWindowIcon(windowMain, 1, images);
320
stbi_image_free(images[0].pixels);
321
-}
322
+}
0 commit comments